diff --git a/index.js b/index.js index 2f94a01..aaa2ed6 100644 --- a/index.js +++ b/index.js @@ -44,7 +44,12 @@ export default [ "unused-imports/no-unused-vars": [ "warn", { argsIgnorePattern: "^_", varsIgnorePattern: "^_" } - ] + ], + '@stylistic/indent': ['error', 4], + '@stylistic/semi': ['error', 'always'], + '@stylistic/quotes': ['error', 'single', { avoidEscape: true }], + '@stylistic/no-trailing-spaces': 'error', + '@stylistic/no-multiple-empty-lines': 'error', } } ];