|
| 1 | +module.exports = { |
| 2 | + env: { |
| 3 | + browser: true, |
| 4 | + es2021: true, |
| 5 | + }, |
| 6 | + extends: [ |
| 7 | + '@antfu/eslint-config-vue', |
| 8 | + 'plugin:vue/vue3-recommended', |
| 9 | + 'plugin:import/recommended', |
| 10 | + 'plugin:import/typescript', |
| 11 | + 'plugin:promise/recommended', |
| 12 | + 'plugin:sonarjs/recommended', |
| 13 | + 'plugin:@typescript-eslint/recommended', |
| 14 | + |
| 15 | + // 'plugin:unicorn/recommended', |
| 16 | + ], |
| 17 | + parser: 'vue-eslint-parser', |
| 18 | + parserOptions: { |
| 19 | + ecmaVersion: 13, |
| 20 | + parser: '@typescript-eslint/parser', |
| 21 | + sourceType: 'module', |
| 22 | + }, |
| 23 | + plugins: [ |
| 24 | + 'vue', |
| 25 | + '@typescript-eslint', |
| 26 | + 'regex', |
| 27 | + ], |
| 28 | + ignorePatterns: ['src/@iconify/*.js', 'node_modules', 'dist', '*.d.ts'], |
| 29 | + rules: { |
| 30 | + 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off', |
| 31 | + 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off', |
| 32 | + |
| 33 | + // indentation (Already present in TypeScript) |
| 34 | + 'indent': ['error', 2], |
| 35 | + |
| 36 | + // Enforce trailing comma (Already present in TypeScript) |
| 37 | + 'comma-dangle': ['error', 'always-multiline'], |
| 38 | + |
| 39 | + // Enforce consistent spacing inside braces of object (Already present in TypeScript) |
| 40 | + 'object-curly-spacing': ['error', 'always'], |
| 41 | + |
| 42 | + // Disable max-len |
| 43 | + 'max-len': 'off', |
| 44 | + |
| 45 | + // we don't want it |
| 46 | + 'semi': ['error', 'never'], |
| 47 | + |
| 48 | + // add parens ony when required in arrow function |
| 49 | + 'arrow-parens': ['error', 'as-needed'], |
| 50 | + |
| 51 | + // add new line above comment |
| 52 | + 'newline-before-return': 'error', |
| 53 | + |
| 54 | + // add new line above comment |
| 55 | + 'lines-around-comment': [ |
| 56 | + 'error', |
| 57 | + { |
| 58 | + beforeBlockComment: true, |
| 59 | + beforeLineComment: true, |
| 60 | + allowBlockStart: true, |
| 61 | + allowClassStart: true, |
| 62 | + allowObjectStart: true, |
| 63 | + allowArrayStart: true, |
| 64 | + }, |
| 65 | + ], |
| 66 | + |
| 67 | + 'array-element-newline': ['error', 'consistent'], |
| 68 | + 'array-bracket-newline': ['error', 'consistent'], |
| 69 | + |
| 70 | + 'vue/multi-word-component-names': 'off', |
| 71 | + |
| 72 | + 'padding-line-between-statements': [ |
| 73 | + 'error', |
| 74 | + { blankLine: 'always', prev: 'expression', next: 'const' }, |
| 75 | + { blankLine: 'always', prev: 'const', next: 'expression' }, |
| 76 | + { blankLine: 'always', prev: 'multiline-const', next: '*' }, |
| 77 | + { blankLine: 'always', prev: '*', next: 'multiline-const' }, |
| 78 | + ], |
| 79 | + |
| 80 | + // Plugin: eslint-plugin-import |
| 81 | + 'import/prefer-default-export': 'off', |
| 82 | + 'import/newline-after-import': ['error', { count: 1 }], |
| 83 | + 'no-restricted-imports': ['error', 'vuetify/components'], |
| 84 | + |
| 85 | + // For omitting extension for ts files |
| 86 | + 'import/extensions': [ |
| 87 | + 'error', |
| 88 | + 'ignorePackages', |
| 89 | + { |
| 90 | + js: 'never', |
| 91 | + jsx: 'never', |
| 92 | + ts: 'never', |
| 93 | + tsx: 'never', |
| 94 | + }, |
| 95 | + ], |
| 96 | + |
| 97 | + // ignore virtual files |
| 98 | + 'import/no-unresolved': [2, { |
| 99 | + ignore: [ |
| 100 | + '~pages$', |
| 101 | + 'virtual:generated-layouts', |
| 102 | + |
| 103 | + // Ignore vite's ?raw imports |
| 104 | + '.*\?raw', |
| 105 | + ], |
| 106 | + }], |
| 107 | + |
| 108 | + // Thanks: https://stackoverflow.com/a/63961972/10796681 |
| 109 | + 'no-shadow': 'off', |
| 110 | + '@typescript-eslint/no-shadow': ['error'], |
| 111 | + |
| 112 | + '@typescript-eslint/consistent-type-imports': 'error', |
| 113 | + |
| 114 | + // Plugin: eslint-plugin-promise |
| 115 | + 'promise/always-return': 'off', |
| 116 | + 'promise/catch-or-return': 'off', |
| 117 | + |
| 118 | + // ESLint plugin vue |
| 119 | + 'vue/block-tag-newline': 'error', |
| 120 | + 'vue/component-api-style': 'error', |
| 121 | + 'vue/component-name-in-template-casing': ['error', 'PascalCase', { registeredComponentsOnly: false }], |
| 122 | + 'vue/custom-event-name-casing': ['error', 'camelCase', { |
| 123 | + ignores: [ |
| 124 | + '/^(click):[a-z]+((\d)|([A-Z0-9][a-z0-9]+))*([A-Z])?/', |
| 125 | + ], |
| 126 | + }], |
| 127 | + 'vue/define-macros-order': 'error', |
| 128 | + 'vue/html-comment-content-newline': 'error', |
| 129 | + 'vue/html-comment-content-spacing': 'error', |
| 130 | + 'vue/html-comment-indent': 'error', |
| 131 | + 'vue/match-component-file-name': 'error', |
| 132 | + 'vue/no-child-content': 'error', |
| 133 | + |
| 134 | + // NOTE this rule only supported in SFC, Users of the unplugin-vue-define-options should disable that rule: https://github.com/vuejs/eslint-plugin-vue/issues/1886 |
| 135 | + // 'vue/no-duplicate-attr-inheritance': 'error', |
| 136 | + 'vue/no-empty-component-block': 'error', |
| 137 | + 'vue/no-multiple-objects-in-class': 'error', |
| 138 | + 'vue/no-reserved-component-names': 'error', |
| 139 | + 'vue/no-template-target-blank': 'error', |
| 140 | + 'vue/no-useless-mustaches': 'error', |
| 141 | + 'vue/no-useless-v-bind': 'error', |
| 142 | + 'vue/padding-line-between-blocks': 'error', |
| 143 | + 'vue/prefer-separate-static-class': 'error', |
| 144 | + 'vue/prefer-true-attribute-shorthand': 'error', |
| 145 | + 'vue/v-on-function-call': 'error', |
| 146 | + 'vue/no-restricted-class': ['error', '/^(p|m)(l|r)-/'], |
| 147 | + |
| 148 | + // -- Extension Rules |
| 149 | + 'vue/no-irregular-whitespace': 'error', |
| 150 | + 'vue/template-curly-spacing': 'error', |
| 151 | + |
| 152 | + // -- Sonarlint |
| 153 | + 'sonarjs/no-duplicate-string': 'off', |
| 154 | + 'sonarjs/no-nested-template-literals': 'off', |
| 155 | + |
| 156 | + // -- Unicorn |
| 157 | + // 'unicorn/filename-case': 'off', |
| 158 | + // 'unicorn/prevent-abbreviations': ['error', { |
| 159 | + // replacements: { |
| 160 | + // props: false, |
| 161 | + // }, |
| 162 | + // }], |
| 163 | + |
| 164 | + // Internal Rules |
| 165 | + 'valid-appcardcode-code-prop': 'error', |
| 166 | + 'valid-appcardcode-demo-sfc': 'error', |
| 167 | + |
| 168 | + // https://github.com/gmullerb/eslint-plugin-regex |
| 169 | + 'regex/invalid': [ |
| 170 | + 'error', |
| 171 | + [ |
| 172 | + { |
| 173 | + regex: '@/assets/images', |
| 174 | + replacement: '@images', |
| 175 | + message: 'Use \'@images\' path alias for image imports', |
| 176 | + }, |
| 177 | + { |
| 178 | + regex: '@/styles', |
| 179 | + replacement: '@styles', |
| 180 | + message: 'Use \'@styles\' path alias for importing styles from \'src/styles\'', |
| 181 | + }, |
| 182 | + |
| 183 | + // { |
| 184 | + // id: 'Disallow icon of icon library', |
| 185 | + // regex: 'tabler-\\w', |
| 186 | + // message: 'Only \'mdi\' icons are allowed', |
| 187 | + // }, |
| 188 | + |
| 189 | + { |
| 190 | + regex: '@core/\\w', |
| 191 | + message: 'You can\'t use @core when you are in @layouts module', |
| 192 | + files: { |
| 193 | + inspect: '@layouts/.*', |
| 194 | + }, |
| 195 | + }, |
| 196 | + { |
| 197 | + regex: 'useLayouts\\(', |
| 198 | + message: '`useLayouts` composable is only allowed in @layouts & @core directory. Please use `useThemeConfig` composable instead.', |
| 199 | + files: { |
| 200 | + inspect: '^(?!.*(@core|@layouts)).*', |
| 201 | + }, |
| 202 | + }, |
| 203 | + { |
| 204 | + regex: 'import axios from \'axios\'', |
| 205 | + replacement: 'import axios from \'@axios\'', |
| 206 | + message: 'Use axios instances created in \'src/plugin/axios.ts\' instead of unconfigured axios', |
| 207 | + files: { |
| 208 | + ignore: '^.*plugins/axios.ts.*', |
| 209 | + }, |
| 210 | + }, |
| 211 | + ], |
| 212 | + |
| 213 | + // Ignore files |
| 214 | + '\.eslintrc\.js', |
| 215 | + ], |
| 216 | + }, |
| 217 | + settings: { |
| 218 | + 'import/resolver': { |
| 219 | + node: { |
| 220 | + extensions: ['.ts', '.js', '.tsx', '.jsx', '.mjs', '.png', '.jpg'], |
| 221 | + }, |
| 222 | + typescript: {}, |
| 223 | + }, |
| 224 | + }, |
| 225 | +} |
0 commit comments