UNPKG

@cartbc/eslint-config-cartes

Version:

ESLint rules to be shared across all Cartes projects

20 lines (19 loc) 389 B
module.exports = { env: { es2020: true, "shared-node-browser": true, }, ignorePatterns: ["dist/**", "lib/**"], parser: "@typescript-eslint/parser", plugins: [ "@typescript-eslint", 'simple-import-sort', ], parserOptions: { sourceType: "module", }, rules: { "simple-import-sort/imports": "error", "sort-keys-fix/sort-keys-fix": "error", } };