1
0
mirror of synced 2025-11-06 04:10:39 +08:00
Files
vxe-table-plugin-export-xlsx/.eslintrc.js
2019-11-04 21:26:13 +08:00

32 lines
596 B
JavaScript

// https://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 6,
sourceType: 'module',
ecmaFeatures: {
impliedStrict: true,
objectLiteralDuplicateProperties: false
}
},
env: {
amd: true,
browser: true,
node: true
},
plugins: [
'@typescript-eslint'
],
extends: [
'prettier/@typescript-eslint',
'standard'
],
rules: {
'array-bracket-spacing': ['error', 'never'],
'no-debugger': ['error'],
'keyword-spacing': ['error']
}
}