javascript ESlnt使用更漂亮
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript ESlnt使用更漂亮相关的知识,希望对你有一定的参考价值。
module.exports = {
parser: 'babel-eslint',
parserOptions: {
ecmaFeatures: {
generators: true,
experimentalObjectRestSpread: true
},
sourceType: 'module',
allowImportExportEverywhere: false
},
env: {
node: true,
es6: true
},
plugins: [
'prettier'
],
extends: ['airbnb', 'prettier'],
settings: {
'import/resolver': {
node: {
extensions: ['.js', '.json', '.css', '.styl']
}
}
},
rules: {
'class-methods-use-this': 1,
'global-require': 0,
'import/no-dynamic-require': 0,
'max-len': 0,
'no-console': 2,
'no-plusplus': [2, { 'allowForLoopAfterthoughts': true }],
'no-tabs': 0,
'no-unused-vars': [2, { args: 'none' }],
'no-continue': 0,
'prettier/prettier': [2, { useTabs: true, tabWidth: 2, singleQuote: true, printWidth: 100, trailingComma: "all" }]
}
};
以上是关于javascript ESlnt使用更漂亮的主要内容,如果未能解决你的问题,请参考以下文章
javascript 使用airbnb,更漂亮
如何将 ESLnt 自定义规则目录添加到 VSCode
我怎样才能用intellij在javascript中更漂亮的模板文字
不应该的 VSCode 格式(更漂亮,javascript)
javascript 更漂亮的配置
javascript Vue在ESLint中拥有更漂亮的支持