.eslintrc-common.js 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  1. /**
  2. * @fixable 表示此配置支持 --fix
  3. */
  4. module.exports = {
  5. parserOptions: {
  6. ecmaVersion: 2017,
  7. sourceType: 'module',
  8. ecmaFeatures: {
  9. jsx: true,
  10. modules: true
  11. }
  12. },
  13. env: {
  14. browser: true,
  15. node: true,
  16. commonjs: true,
  17. es6: true
  18. },
  19. // 以当前目录为根目录,不再向上查找 .eslintrc.js
  20. root: true,
  21. rules: {
  22. // @fixable This rule enforces a consistent indentation style in <template>. The default style is 2 spaces.
  23. // "vue/html-indent": ["error", 'number', {
  24. // "attribute": 2,
  25. // "baseIndent": 2,
  26. // "closeBracket": 2,
  27. // "alignAttributesVertically": true,
  28. // "ignores": []
  29. // }],
  30. // @fixable 去除标签中间空格
  31. "vue/no-multi-spaces": ["error", {
  32. "ignoreProperties": false
  33. }],
  34. // @fixable 去除标签手尾空格
  35. "vue/html-closing-bracket-spacing": ["error", {
  36. "startTag": "never",
  37. "endTag": "never",
  38. "selfClosingTag": "never"
  39. }],
  40. // @fixable 使用两个空格进行缩进
  41. 'indent': [
  42. 'error',
  43. 2,
  44. {
  45. SwitchCase: 1
  46. }
  47. ],
  48. // 不要混合使用空格与制表符作为缩进
  49. 'no-mixed-spaces-and-tabs': 'error',
  50. // @fixable 关键字后面加空格
  51. 'keyword-spacing': [
  52. 'error',
  53. {
  54. "after": true
  55. }
  56. ],
  57. // @fixable function 的小括号之前必须要有空格
  58. 'space-before-function-paren': [
  59. 'error',
  60. 'never'
  61. ],
  62. // @fixable 函数名和执行它的括号之间禁止有空格
  63. 'func-call-spacing': [
  64. 'error',
  65. 'never'
  66. ],
  67. // @fixable 对象字面量中冒号前面禁止有空格,后面必须有空格
  68. 'key-spacing': [
  69. 'error',
  70. {
  71. beforeColon: false,
  72. afterColon: true,
  73. mode: 'strict',
  74. }
  75. ],
  76. // @fixable 操作符左右必须有空格,比如 let sum = 1 + 2;
  77. 'space-infix-ops': 'error',
  78. // @fixable 逗号前禁止有空格,逗号后必须要有空格
  79. 'comma-spacing': [
  80. 'error',
  81. {
  82. 'before': false,
  83. 'after': true
  84. }
  85. ],
  86. // @fixable 代码块如果在一行内,那么大括号内的首尾必须有空格,比如 function () { alert('Hello') }
  87. 'block-spacing': [
  88. 'error',
  89. 'always'
  90. ],
  91. // @fixable 禁止出现连续的多个空格,除非是注释前,或对齐对象的属性、变量定义、import 等
  92. 'no-multi-spaces': [
  93. 'error',
  94. {
  95. ignoreEOLComments: true,
  96. exceptions: {
  97. Property: true,
  98. BinaryExpression: false,
  99. VariableDeclarator: true,
  100. ImportDeclaration: true
  101. }
  102. }
  103. ],
  104. // 禁止使用 tabs
  105. // 'no-tabs': 'error',
  106. 'no-tabs': 'off',
  107. // @fixable 禁止行尾有空格
  108. 'no-trailing-spaces': [
  109. 'error',
  110. {
  111. skipBlankLines: true,
  112. ignoreComments: true
  113. }
  114. ],
  115. // @fixable 禁止属性前有空格,比如 foo. bar()
  116. 'no-whitespace-before-property': 'error',
  117. // @fixable 一行有多个语句时,分号前面禁止有空格,分号后面必须有空格
  118. 'semi-spacing': [
  119. 'error',
  120. {
  121. before: false,
  122. after: true
  123. }
  124. ],
  125. // @fixable if, function 等的大括号之前必须要有空格,比如 if (a) {
  126. 'space-before-blocks': [
  127. 'error',
  128. 'always'
  129. ],
  130. // @fixable 小括号内的首尾禁止有空格
  131. 'space-in-parens': [
  132. 'error',
  133. 'never'
  134. ],
  135. // @fixable new, typeof 等后面必须有空格,++, -- 等禁止有空格,比如:
  136. // let foo = new Person();
  137. // bar = bar++;
  138. 'space-unary-ops': [
  139. 'error',
  140. {
  141. words: true,
  142. nonwords: false
  143. }
  144. ],
  145. // @fixable else、catch需要和花括号在一行
  146. 'brace-style': 'error',
  147. // @off 有时放在第二行开始处更易读
  148. 'operator-linebreak': 'off',
  149. // @fixable 链式调用的时候,点号必须放在第二行开头处,禁止放在第一行结尾处
  150. 'dot-location': [
  151. 'error',
  152. 'property'
  153. ],
  154. // @fixable 文件最后一行必须有一个空行
  155. 'eol-last': 'error',
  156. // @fixable 对象属性换行时注意统一代码风格, 要么都在同一行,要么一个一行
  157. 'object-property-newline': [
  158. 'error',
  159. {
  160. 'allowMultiplePropertiesPerLine': true
  161. }
  162. ],
  163. // @fixable if 后面必须要有 {,除非是单行 if
  164. 'curly': [
  165. 'error',
  166. 'multi-line',
  167. 'consistent'
  168. ],
  169. // @fixable new 后面的类必须有小括号
  170. 'new-parens': 'error',
  171. // @fixable 禁止函数表达式中出现多余的括号,比如 let foo = (function () { return 1 })
  172. 'no-extra-parens': [
  173. 'error',
  174. 'functions'
  175. ],
  176. // 禁止在测试表达式中使用赋值语句,除非这个赋值语句被括号包起来了
  177. 'no-cond-assign': [
  178. 'error',
  179. 'except-parens'
  180. ],
  181. // 禁止在 return 语句里赋值
  182. 'no-return-assign': [
  183. 'error',
  184. 'always'
  185. ],
  186. // @fixable 必须使用单引号,禁止使用双引号
  187. 'quotes': [
  188. 'error',
  189. 'single',
  190. {
  191. avoidEscape: true,
  192. allowTemplateLiterals: true
  193. }
  194. ],
  195. // @fixable 最后一行不要逗号
  196. 'comma-dangle': 'error',
  197. // 对于变量和函数名统一使用驼峰命名法
  198. 'camelcase': 'off',
  199. // 禁止变量申明时用逗号一次申明多个
  200. 'one-var': [
  201. 'error',
  202. 'never'
  203. ],
  204. // 禁止直接 new 一个类而不赋值
  205. 'no-new': 'error',
  206. // 禁止重复定义变量
  207. 'no-redeclare': 'error',
  208. // @fixable 禁止将 undefined 赋值给变量
  209. 'no-undef-init': 'error',
  210. // 禁止对使用 const 定义的常量重新赋值
  211. 'no-const-assign': 'error',
  212. // 禁止在函数参数中出现重复名称的参数
  213. 'no-dupe-args': 'error',
  214. // 禁止在对象字面量中出现重复名称的键名
  215. 'no-dupe-keys': 'error',
  216. // 禁止修改原生对象
  217. 'no-extend-native': 'error',
  218. // 禁止将一个函数声明重新赋值,如:
  219. // function foo() {}
  220. // foo = bar
  221. 'no-func-assign': 'error',
  222. // 禁止对全局变量赋值
  223. 'no-global-assign': 'error',
  224. // 禁止在 if 代码块内出现函数声明
  225. 'no-inner-declarations': 'error',
  226. // 禁止 label 名称与定义过的变量重复
  227. 'no-label-var': 'error',
  228. // 禁止使用没必要的 {} 作为代码块
  229. 'no-lone-blocks': 'error',
  230. // 禁止使用 new Function,比如 let x = new Function("a", "b", "return a + b");
  231. 'no-new-func': 'error',
  232. // 禁止直接 new Object
  233. 'no-new-object': 'error',
  234. // 禁止直接 new require('foo')
  235. 'no-new-require': 'error',
  236. // 禁止使用 new 来生成 Symbol
  237. 'no-new-symbol': 'error',
  238. // 禁止使用 new 来生成 String, Number 或 Boolean
  239. 'no-new-wrappers': 'error',
  240. // 禁止将 Math, JSON 或 Reflect 直接作为函数调用
  241. 'no-obj-calls': 'error',
  242. // 禁止使用 __proto__
  243. 'no-proto': 'error',
  244. // 禁止将自己赋值给自己
  245. 'no-self-assign': 'error',
  246. // 禁止将自己与自己比较
  247. 'no-self-compare': 'error',
  248. // 禁止使用保留字作为变量名
  249. 'no-shadow-restricted-names': 'error',
  250. // 禁止在数组中出现连续的逗号,如 let foo = [,,]
  251. 'no-sparse-arrays': 'error',
  252. // 禁止 throw 字面量,必须 throw 一个 Error 对象
  253. 'no-throw-literal': 'error',
  254. // 禁止在 return, throw, break 或 continue 之后还有代码
  255. 'no-unreachable': 'error',
  256. // 禁止在 finally 中出现 return, throw, break 或 continue
  257. 'no-unsafe-finally': 'error',
  258. // @fixable 禁止在 in 或 instanceof 操作符的左侧使用感叹号,如 if (!key in object)
  259. 'no-unsafe-negation': 'error',
  260. // 禁止出现没必要的转义
  261. 'no-useless-escape': 'error',
  262. // callback 中的 error 必须被处理
  263. 'handle-callback-err': 'error',
  264. // @fixable 始终使用 === 替代 ==。例外: obj == null 可以用来检查 null || undefined
  265. 'eqeqeq': [
  266. 'error',
  267. 'always',
  268. {
  269. 'null': 'ignore'
  270. }
  271. ],
  272. // 禁止使用 Array 构造函数
  273. 'no-array-constructor': 'error',
  274. // 禁止将常量作为分支条件判断中的测试表达式,但允许作为循环条件判断中的测试表达式
  275. 'no-constant-condition': [
  276. 'error',
  277. {
  278. checkLoops: false
  279. }
  280. ],
  281. // 禁止使用 eval
  282. 'no-eval': 'error',
  283. // 禁止在 setTimeout 或 setInterval 中传入字符串,如 setTimeout('alert("Hi!")', 100);
  284. 'no-implied-eval': 'error',
  285. // @fixable 禁止在测试表达式中使用 !! 或 Boolean
  286. 'no-extra-boolean-cast': 'error',
  287. // @fixable 表示小数时,禁止省略 0,比如 .5
  288. 'no-floating-decimal': 'error',
  289. // 禁止使用 label
  290. 'no-labels': 'error',
  291. // 禁止使用 \ 来换行字符串,可使用+
  292. 'no-multi-str': 'error',
  293. // 禁止对 __dirname 或 __filename 使用字符串连接
  294. 'no-path-concat': 'error',
  295. // 循环内必须对循环条件的变量有修改
  296. 'no-unmodified-loop-condition': 'error',
  297. // @fixable 禁止出现没必要的计算键名,比如 let a = { ['0']: 0 };
  298. 'no-useless-computed-key': 'error',
  299. // 必须使用 isNaN(foo) 而不是 foo === NaN
  300. 'use-isnan': 'error',
  301. // @fixable 禁止出现 foo['bar'],必须写成 foo.bar
  302. 'dot-notation': 'error',
  303. // @fixable 注释的斜线或 * 后必须有空格
  304. 'spaced-comment': [
  305. 'error',
  306. 'always',
  307. {
  308. block: {
  309. exceptions: [
  310. '*'
  311. ],
  312. balanced: true
  313. }
  314. }
  315. ],
  316. // @fixable 不加分号
  317. 'semi': ['error', 'never'],
  318. // 禁止出现难以理解的多行表达式,如:
  319. // let foo = bar
  320. // [1, 2, 3].forEach(baz);
  321. 'no-unexpected-multiline': 'error',
  322. }
  323. };