禁用编译包括 lint 或 linter
Disable compiling including lint or linter
我在构建我的网站(从 vue-cli 脚手架构建)时遇到问题,这也是学生的作业。
制表和额外空格等 Linter 规则导致应用将它们显示为致命错误。
代码和语法违规肯定为什么不是空格和制表符?
这对学生来说是不可能的
我如何决定哪些 linter 规则被包含在 webpack/babel 编译中,哪些被忽略?
看看eslint config page。您将能够使用 .eslintrc.js
配置规则。您还可以使用 .eslintignore
文件定义不会被检查的路径。
例如,这是我在当前项目中使用的:
module.exports = {
root: true,
parser: 'babel-eslint',
parserOptions: {
sourceType: 'module'
},
env: {
browser: true
},
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
extends: [
'standard'
],
// required to lint *.vue files
plugins: [
'html',
'import'
],
globals: {
'cordova': true,
'DEV': true,
'PROD': true,
'__THEME': true
},
// add your custom rules here
'rules': {
// allow paren-less arrow functions
'arrow-parens': 0,
'one-var': 0,
'import/first': 0,
'import/named': 2,
'import/namespace': 2,
'import/default': 2,
'import/export': 2,
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
'brace-style': [2, '1tbs', { 'allowSingleLine': true }],
'no-return-assign': 0
}
}
还有我的忽略文件:
build/*.js
config/*.js
dist/*.js
我在构建我的网站(从 vue-cli 脚手架构建)时遇到问题,这也是学生的作业。
制表和额外空格等 Linter 规则导致应用将它们显示为致命错误。
代码和语法违规肯定为什么不是空格和制表符?
这对学生来说是不可能的
我如何决定哪些 linter 规则被包含在 webpack/babel 编译中,哪些被忽略?
看看eslint config page。您将能够使用 .eslintrc.js
配置规则。您还可以使用 .eslintignore
文件定义不会被检查的路径。
例如,这是我在当前项目中使用的:
module.exports = {
root: true,
parser: 'babel-eslint',
parserOptions: {
sourceType: 'module'
},
env: {
browser: true
},
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
extends: [
'standard'
],
// required to lint *.vue files
plugins: [
'html',
'import'
],
globals: {
'cordova': true,
'DEV': true,
'PROD': true,
'__THEME': true
},
// add your custom rules here
'rules': {
// allow paren-less arrow functions
'arrow-parens': 0,
'one-var': 0,
'import/first': 0,
'import/named': 2,
'import/namespace': 2,
'import/default': 2,
'import/export': 2,
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
'brace-style': [2, '1tbs', { 'allowSingleLine': true }],
'no-return-assign': 0
}
}
还有我的忽略文件:
build/*.js
config/*.js
dist/*.js