mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 10:02:59 +08:00
43 lines
1.4 KiB
JavaScript
43 lines
1.4 KiB
JavaScript
![]() |
import stylistic from "@stylistic/eslint-plugin";
|
||
|
|
||
|
// eslint config just for formatting rules
|
||
|
// potentially to be merged with the linting rules into one single config,
|
||
|
// once we have fixed the majority of lint errors
|
||
|
|
||
|
// Go to https://eslint.style/rules/default/${rule_without_prefix} to check the rule details
|
||
|
export const stylisticRules = {
|
||
|
"@stylistic/indent": [ "error", 4 ],
|
||
|
"@stylistic/quotes": [ "error", "double", { avoidEscape: true, allowTemplateLiterals: "always" } ],
|
||
|
"@stylistic/semi": [ "error", "always" ],
|
||
|
"@stylistic/quote-props": [ "error", "consistent-as-needed" ],
|
||
|
"@stylistic/max-len": [ "error", { code: 200 } ],
|
||
|
"@stylistic/comma-dangle": [ "error", "never" ],
|
||
|
"@stylistic/linebreak-style": [ "error", "unix" ],
|
||
|
"@stylistic/array-bracket-spacing": [ "error", "always" ],
|
||
|
"@stylistic/object-curly-spacing": [ "error", "always" ],
|
||
|
"@stylistic/padded-blocks": [ "error", { classes: "always" } ]
|
||
|
};
|
||
|
|
||
|
export default [
|
||
|
{
|
||
|
plugins: {
|
||
|
"@stylistic": stylistic
|
||
|
},
|
||
|
rules: {
|
||
|
...stylisticRules
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
ignores: [
|
||
|
"build/*",
|
||
|
"dist/*",
|
||
|
"docs/*",
|
||
|
"libraries/*",
|
||
|
// TriliumNextTODO: check if we want to format packages here as well - for now skipping it
|
||
|
"packages/*",
|
||
|
"src/public/app-dist/*",
|
||
|
"src/public/app/doc_notes/*"
|
||
|
]
|
||
|
}
|
||
|
];
|