8 lines
291 B
TypeScript
8 lines
291 B
TypeScript
import type { Linter } from "eslint";
|
|
|
|
import perfectionist from "eslint-plugin-perfectionist";
|
|
|
|
export const règlesTri: Readonly<Linter.Config> = {
|
|
plugins: perfectionist.configs["recommended-natural"].plugins ?? {},
|
|
rules: perfectionist.configs["recommended-natural"].rules ?? {},
|
|
};
|