mirror of
https://github.com/frappe/books.git
synced 2024-11-08 14:50:56 +00:00
64 lines
1.7 KiB
JavaScript
64 lines
1.7 KiB
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
browser: true,
|
|
es2018: true,
|
|
},
|
|
rules: {
|
|
'no-console': 'warn',
|
|
'no-debugger': 'warn',
|
|
'arrow-body-style': 'off',
|
|
'prettier/prettier': 'warn',
|
|
'prefer-arrow-callback': 'warn',
|
|
'vue/no-mutating-props': 'off',
|
|
'vue/multi-word-component-names': 'off',
|
|
'vue/no-useless-template-attributes': 'off',
|
|
'vue/one-component-per-file': 'off',
|
|
'vue/no-reserved-component-names': 'off',
|
|
'@typescript-eslint/ban-ts-comment': 'off',
|
|
'@typescript-eslint/no-var-requires': 'off',
|
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
|
'@typescript-eslint/no-floating-promises': 'warn',
|
|
'@typescript-eslint/no-misused-promises': 'warn',
|
|
},
|
|
parser: 'vue-eslint-parser',
|
|
parserOptions: {
|
|
parser: '@typescript-eslint/parser',
|
|
project: true,
|
|
tsconfigRootDir: __dirname,
|
|
sourceType: 'module',
|
|
extraFileExtensions: ['.vue'],
|
|
},
|
|
plugins: ['@typescript-eslint', 'prettier'],
|
|
extends: [
|
|
'plugin:vue/vue3-recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:@typescript-eslint/recommended-requiring-type-checking',
|
|
'plugin:prettier/recommended',
|
|
],
|
|
overrides: [
|
|
{
|
|
files: ['*.vue'],
|
|
rules: {
|
|
'@typescript-eslint/no-misused-promises': 'off',
|
|
'@typescript-eslint/no-unsafe-assignment': 'off',
|
|
'@typescript-eslint/no-unsafe-member-access': 'off',
|
|
'@typescript-eslint/no-unsafe-call': 'off',
|
|
},
|
|
},
|
|
],
|
|
ignorePatterns: [
|
|
'*.mjs',
|
|
'uitest',
|
|
'.eslintrc.js',
|
|
'tailwind.config.js',
|
|
'node_modules',
|
|
'dist_electron',
|
|
'*.spec.ts',
|
|
'vite.config.ts',
|
|
'postcss.config.js',
|
|
'src/components/**/*.vue', // Incrementally fix these
|
|
],
|
|
};
|