Skip to content

Commit

Permalink
fix: sapce
Browse files Browse the repository at this point in the history
  • Loading branch information
yihuineng committed Oct 12, 2023
1 parent 87020a9 commit 44f45d3
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,40 +2,40 @@

/* eslint-env node */
const eslintConfig = {
extends: 'eslint-config-egg',
env: {
browser: true,
es6: true,
node: true,
extends: 'eslint-config-egg',
env: {
browser: true,
es6: true,
node: true,
},
settings: {
'import/resolver': {
alias: {
map: [
[ '@', `${__dirname}/src` ],
],
extensions: [ '.js', '.jsx', '.json' ],
},
},
settings: {
'import/resolver': {
alias: {
map: [
[ '@', `${__dirname}/src` ],
],
extensions: [ '.js', '.jsx', '.json' ],
},
},
},
parserOptions: {
ecmaVersion: 2020,
ecmaFeatures: {
experimentalObjectRestSpread: true,
},
parserOptions: {
ecmaVersion: 2020,
ecmaFeatures: {
experimentalObjectRestSpread: true,
},
},
plugins: [
'import'
],
ignorePatterns: [ '*.d.ts' ],
rules: {
'import/extensions': 0,
'jsdoc/require-param-type': 0,
'jsdoc/require-param-description': 0,
'jsdoc/check-tag-names': 0,
'jsdoc/require-returns-description': 0,
},
overrides: [],
},
plugins: [
'import'
],
ignorePatterns: [ '*.d.ts' ],
rules: {
'import/extensions': 0,
'jsdoc/require-param-type': 0,
'jsdoc/require-param-description': 0,
'jsdoc/check-tag-names': 0,
'jsdoc/require-returns-description': 0,
},
overrides: [],
};

module.exports = eslintConfig;

0 comments on commit 44f45d3

Please sign in to comment.