62 lines
1.7 KiB
JavaScript
62 lines
1.7 KiB
JavaScript
|
|
module.exports = {
|
||
|
|
root: true,
|
||
|
|
|
||
|
|
parserOptions: {
|
||
|
|
parser: require.resolve('@typescript-eslint/parser'),
|
||
|
|
extraFileExtensions: ['.vue'],
|
||
|
|
},
|
||
|
|
|
||
|
|
env: {
|
||
|
|
browser: true,
|
||
|
|
es2021: true,
|
||
|
|
node: true,
|
||
|
|
'vue/setup-compiler-macros': true,
|
||
|
|
},
|
||
|
|
|
||
|
|
extends: [
|
||
|
|
// https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin#usage
|
||
|
|
// ESLint typescript rules
|
||
|
|
'plugin:@typescript-eslint/recommended',
|
||
|
|
|
||
|
|
// Uncomment any of the lines below to choose desired strictness,
|
||
|
|
// but leave only one uncommented!
|
||
|
|
// See https://eslint.vuejs.org/rules/#available-rules
|
||
|
|
'plugin:vue/vue3-essential',
|
||
|
|
|
||
|
|
// https://github.com/prettier/eslint-config-prettier#installation
|
||
|
|
// usage with Prettier, provided by 'eslint-config-prettier'.
|
||
|
|
'prettier',
|
||
|
|
],
|
||
|
|
|
||
|
|
plugins: [
|
||
|
|
// required to apply rules which need type information
|
||
|
|
'@typescript-eslint',
|
||
|
|
|
||
|
|
// https://eslint.vuejs.org/user-guide/#why-doesn-t-it-work-on-vue-files
|
||
|
|
// required to lint *.vue files
|
||
|
|
'vue',
|
||
|
|
],
|
||
|
|
|
||
|
|
globals: {
|
||
|
|
ga: 'readonly', // Google Analytics
|
||
|
|
cordova: 'readonly',
|
||
|
|
__statics: 'readonly',
|
||
|
|
__QUASAR_SSR__: 'readonly',
|
||
|
|
__QUASAR_SSR_SERVER__: 'readonly',
|
||
|
|
__QUASAR_SSR_CLIENT__: 'readonly',
|
||
|
|
__QUASAR_SSR_PWA__: 'readonly',
|
||
|
|
process: 'readonly',
|
||
|
|
Capacitor: 'readonly',
|
||
|
|
chrome: 'readonly',
|
||
|
|
},
|
||
|
|
|
||
|
|
// add your custom rules here
|
||
|
|
rules: {
|
||
|
|
quotes: ['warn', 'single', { avoidEscape: true }],
|
||
|
|
'@typescript-eslint/explicit-function-return-type': 'off',
|
||
|
|
'@typescript-eslint/no-unused-vars': 'warn',
|
||
|
|
'prefer-promise-reject-errors': 'off',
|
||
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
||
|
|
},
|
||
|
|
};
|