.eslintrc.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  1. module.exports = {
  2. root: true,
  3. parserOptions: {
  4. parser: 'babel-eslint',
  5. sourceType: 'module'
  6. },
  7. env: {
  8. browser: true,
  9. node: true,
  10. es6: true,
  11. },
  12. extends: ['plugin:vue/recommended', 'eslint:recommended'],
  13. // add your custom rules here
  14. //it is base on https://github.com/vuejs/eslint-config-vue
  15. rules: {
  16. "vue/max-attributes-per-line": [2, {
  17. "singleline": 10,
  18. "multiline": {
  19. "max": 1,
  20. "allowFirstLine": false
  21. }
  22. }],
  23. "vue/singleline-html-element-content-newline": "off",
  24. "vue/multiline-html-element-content-newline":"off",
  25. "vue/name-property-casing": ["error", "PascalCase"],
  26. "vue/no-v-html": "off",
  27. 'accessor-pairs': 2,
  28. 'arrow-spacing': [2, {
  29. 'before': true,
  30. 'after': true
  31. }],
  32. 'block-spacing': [2, 'always'],
  33. 'brace-style': [2, '1tbs', {
  34. 'allowSingleLine': true
  35. }],
  36. 'camelcase': [0, {
  37. 'properties': 'always'
  38. }],
  39. 'comma-dangle': [2, 'never'],
  40. 'comma-spacing': [2, {
  41. 'before': false,
  42. 'after': true
  43. }],
  44. 'comma-style': [2, 'last'],
  45. 'constructor-super': 2,
  46. 'curly': [2, 'multi-line'],
  47. 'dot-location': [2, 'property'],
  48. 'eol-last': 2,
  49. 'eqeqeq': ["error", "always", {"null": "ignore"}],
  50. 'generator-star-spacing': [2, {
  51. 'before': true,
  52. 'after': true
  53. }],
  54. 'handle-callback-err': [2, '^(err|error)$'],
  55. 'indent': [2, 2, {
  56. 'SwitchCase': 1
  57. }],
  58. 'jsx-quotes': [2, 'prefer-single'],
  59. 'key-spacing': [2, {
  60. 'beforeColon': false,
  61. 'afterColon': true
  62. }],
  63. 'keyword-spacing': [2, {
  64. 'before': true,
  65. 'after': true
  66. }],
  67. 'new-cap': [2, {
  68. 'newIsCap': true,
  69. 'capIsNew': false
  70. }],
  71. 'new-parens': 2,
  72. 'no-array-constructor': 2,
  73. 'no-caller': 2,
  74. 'no-console': 'off',
  75. 'no-class-assign': 2,
  76. 'no-cond-assign': 2,
  77. 'no-const-assign': 2,
  78. 'no-control-regex': 0,
  79. 'no-delete-var': 2,
  80. 'no-dupe-args': 2,
  81. 'no-dupe-class-members': 2,
  82. 'no-dupe-keys': 2,
  83. 'no-duplicate-case': 2,
  84. 'no-empty-character-class': 2,
  85. 'no-empty-pattern': 2,
  86. 'no-eval': 2,
  87. 'no-ex-assign': 2,
  88. 'no-extend-native': 2,
  89. 'no-extra-bind': 2,
  90. 'no-extra-boolean-cast': 2,
  91. 'no-extra-parens': [2, 'functions'],
  92. 'no-fallthrough': 2,
  93. 'no-floating-decimal': 2,
  94. 'no-func-assign': 2,
  95. 'no-implied-eval': 2,
  96. 'no-inner-declarations': [2, 'functions'],
  97. 'no-invalid-regexp': 2,
  98. 'no-irregular-whitespace': 2,
  99. 'no-iterator': 2,
  100. 'no-label-var': 2,
  101. 'no-labels': [2, {
  102. 'allowLoop': false,
  103. 'allowSwitch': false
  104. }],
  105. 'no-lone-blocks': 2,
  106. 'no-mixed-spaces-and-tabs': 2,
  107. 'no-multi-spaces': 2,
  108. 'no-multi-str': 2,
  109. 'no-multiple-empty-lines': [2, {
  110. 'max': 1
  111. }],
  112. 'no-native-reassign': 2,
  113. 'no-negated-in-lhs': 2,
  114. 'no-new-object': 2,
  115. 'no-new-require': 2,
  116. 'no-new-symbol': 2,
  117. 'no-new-wrappers': 2,
  118. 'no-obj-calls': 2,
  119. 'no-octal': 2,
  120. 'no-octal-escape': 2,
  121. 'no-path-concat': 2,
  122. 'no-proto': 2,
  123. 'no-redeclare': 2,
  124. 'no-regex-spaces': 2,
  125. 'no-return-assign': [2, 'except-parens'],
  126. 'no-self-assign': 2,
  127. 'no-self-compare': 2,
  128. 'no-sequences': 2,
  129. 'no-shadow-restricted-names': 2,
  130. 'no-spaced-func': 2,
  131. 'no-sparse-arrays': 2,
  132. 'no-this-before-super': 2,
  133. 'no-throw-literal': 2,
  134. 'no-trailing-spaces': 2,
  135. 'no-undef': 2,
  136. 'no-undef-init': 2,
  137. 'no-unexpected-multiline': 2,
  138. 'no-unmodified-loop-condition': 2,
  139. 'no-unneeded-ternary': [2, {
  140. 'defaultAssignment': false
  141. }],
  142. 'no-unreachable': 2,
  143. 'no-unsafe-finally': 2,
  144. 'no-unused-vars': [2, {
  145. 'vars': 'all',
  146. 'args': 'none'
  147. }],
  148. 'no-useless-call': 2,
  149. 'no-useless-computed-key': 2,
  150. 'no-useless-constructor': 2,
  151. 'no-useless-escape': 0,
  152. 'no-whitespace-before-property': 2,
  153. 'no-with': 2,
  154. 'one-var': [2, {
  155. 'initialized': 'never'
  156. }],
  157. 'operator-linebreak': [2, 'after', {
  158. 'overrides': {
  159. '?': 'before',
  160. ':': 'before'
  161. }
  162. }],
  163. 'padded-blocks': [2, 'never'],
  164. 'quotes': [2, 'single', {
  165. 'avoidEscape': true,
  166. 'allowTemplateLiterals': true
  167. }],
  168. 'semi': [2, 'never'],
  169. 'semi-spacing': [2, {
  170. 'before': false,
  171. 'after': true
  172. }],
  173. 'space-before-blocks': [2, 'always'],
  174. 'space-before-function-paren': [2, 'never'],
  175. 'space-in-parens': [2, 'never'],
  176. 'space-infix-ops': 2,
  177. 'space-unary-ops': [2, {
  178. 'words': true,
  179. 'nonwords': false
  180. }],
  181. 'spaced-comment': [2, 'always', {
  182. 'markers': ['global', 'globals', 'eslint', 'eslint-disable', '*package', '!', ',']
  183. }],
  184. 'template-curly-spacing': [2, 'never'],
  185. 'use-isnan': 2,
  186. 'valid-typeof': 2,
  187. 'wrap-iife': [2, 'any'],
  188. 'yield-star-spacing': [2, 'both'],
  189. 'yoda': [2, 'never'],
  190. 'prefer-const': 2,
  191. 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
  192. 'object-curly-spacing': [2, 'always', {
  193. objectsInObjects: false
  194. }],
  195. 'array-bracket-spacing': [2, 'never']
  196. }
  197. }
  198. module.exports = {
  199. root: true,
  200. parserOptions: {
  201. parser: 'babel-eslint',
  202. sourceType: 'module'
  203. },
  204. env: {
  205. browser: true,
  206. node: true,
  207. es6: true,
  208. },
  209. extends: ['plugin:vue/recommended', 'eslint:recommended'],
  210. // add your custom rules here
  211. //it is base on https://github.com/vuejs/eslint-config-vue
  212. rules: {
  213. "vue/max-attributes-per-line": [2, {
  214. "singleline": 10,
  215. "multiline": {
  216. "max": 1,
  217. "allowFirstLine": false
  218. }
  219. }],
  220. "vue/singleline-html-element-content-newline": "off",
  221. "vue/multiline-html-element-content-newline":"off",
  222. "vue/name-property-casing": ["error", "PascalCase"],
  223. "vue/no-v-html": "off",
  224. 'accessor-pairs': 2,
  225. 'arrow-spacing': [2, {
  226. 'before': true,
  227. 'after': true
  228. }],
  229. 'block-spacing': [2, 'always'],
  230. 'brace-style': [2, '1tbs', {
  231. 'allowSingleLine': true
  232. }],
  233. 'camelcase': [0, {
  234. 'properties': 'always'
  235. }],
  236. 'comma-dangle': [2, 'never'],
  237. 'comma-spacing': [2, {
  238. 'before': false,
  239. 'after': true
  240. }],
  241. 'comma-style': [2, 'last'],
  242. 'constructor-super': 2,
  243. 'curly': [2, 'multi-line'],
  244. 'dot-location': [2, 'property'],
  245. 'eol-last': 2,
  246. 'eqeqeq': ["error", "always", {"null": "ignore"}],
  247. 'generator-star-spacing': [2, {
  248. 'before': true,
  249. 'after': true
  250. }],
  251. 'handle-callback-err': [2, '^(err|error)$'],
  252. 'indent': [2, 2, {
  253. 'SwitchCase': 1
  254. }],
  255. 'jsx-quotes': [2, 'prefer-single'],
  256. 'key-spacing': [2, {
  257. 'beforeColon': false,
  258. 'afterColon': true
  259. }],
  260. 'keyword-spacing': [2, {
  261. 'before': true,
  262. 'after': true
  263. }],
  264. 'new-cap': [2, {
  265. 'newIsCap': true,
  266. 'capIsNew': false
  267. }],
  268. 'new-parens': 2,
  269. 'no-array-constructor': 2,
  270. 'no-caller': 2,
  271. 'no-console': 'off',
  272. 'no-class-assign': 2,
  273. 'no-cond-assign': 2,
  274. 'no-const-assign': 2,
  275. 'no-control-regex': 0,
  276. 'no-delete-var': 2,
  277. 'no-dupe-args': 2,
  278. 'no-dupe-class-members': 2,
  279. 'no-dupe-keys': 2,
  280. 'no-duplicate-case': 2,
  281. 'no-empty-character-class': 2,
  282. 'no-empty-pattern': 2,
  283. 'no-eval': 2,
  284. 'no-ex-assign': 2,
  285. 'no-extend-native': 2,
  286. 'no-extra-bind': 2,
  287. 'no-extra-boolean-cast': 2,
  288. 'no-extra-parens': [2, 'functions'],
  289. 'no-fallthrough': 2,
  290. 'no-floating-decimal': 2,
  291. 'no-func-assign': 2,
  292. 'no-implied-eval': 2,
  293. 'no-inner-declarations': [2, 'functions'],
  294. 'no-invalid-regexp': 2,
  295. 'no-irregular-whitespace': 2,
  296. 'no-iterator': 2,
  297. 'no-label-var': 2,
  298. 'no-labels': [2, {
  299. 'allowLoop': false,
  300. 'allowSwitch': false
  301. }],
  302. 'no-lone-blocks': 2,
  303. 'no-mixed-spaces-and-tabs': 2,
  304. 'no-multi-spaces': 2,
  305. 'no-multi-str': 2,
  306. 'no-multiple-empty-lines': [2, {
  307. 'max': 1
  308. }],
  309. 'no-native-reassign': 2,
  310. 'no-negated-in-lhs': 2,
  311. 'no-new-object': 2,
  312. 'no-new-require': 2,
  313. 'no-new-symbol': 2,
  314. 'no-new-wrappers': 2,
  315. 'no-obj-calls': 2,
  316. 'no-octal': 2,
  317. 'no-octal-escape': 2,
  318. 'no-path-concat': 2,
  319. 'no-proto': 2,
  320. 'no-redeclare': 2,
  321. 'no-regex-spaces': 2,
  322. 'no-return-assign': [2, 'except-parens'],
  323. 'no-self-assign': 2,
  324. 'no-self-compare': 2,
  325. 'no-sequences': 2,
  326. 'no-shadow-restricted-names': 2,
  327. 'no-spaced-func': 2,
  328. 'no-sparse-arrays': 2,
  329. 'no-this-before-super': 2,
  330. 'no-throw-literal': 2,
  331. 'no-trailing-spaces': 2,
  332. 'no-undef': 2,
  333. 'no-undef-init': 2,
  334. 'no-unexpected-multiline': 2,
  335. 'no-unmodified-loop-condition': 2,
  336. 'no-unneeded-ternary': [2, {
  337. 'defaultAssignment': false
  338. }],
  339. 'no-unreachable': 2,
  340. 'no-unsafe-finally': 2,
  341. 'no-unused-vars': [2, {
  342. 'vars': 'all',
  343. 'args': 'none'
  344. }],
  345. 'no-useless-call': 2,
  346. 'no-useless-computed-key': 2,
  347. 'no-useless-constructor': 2,
  348. 'no-useless-escape': 0,
  349. 'no-whitespace-before-property': 2,
  350. 'no-with': 2,
  351. 'one-var': [2, {
  352. 'initialized': 'never'
  353. }],
  354. 'operator-linebreak': [2, 'after', {
  355. 'overrides': {
  356. '?': 'before',
  357. ':': 'before'
  358. }
  359. }],
  360. 'padded-blocks': [2, 'never'],
  361. 'quotes': [2, 'single', {
  362. 'avoidEscape': true,
  363. 'allowTemplateLiterals': true
  364. }],
  365. 'semi': [2, 'never'],
  366. 'semi-spacing': [2, {
  367. 'before': false,
  368. 'after': true
  369. }],
  370. 'space-before-blocks': [2, 'always'],
  371. 'space-before-function-paren': [2, 'never'],
  372. 'space-in-parens': [2, 'never'],
  373. 'space-infix-ops': 2,
  374. 'space-unary-ops': [2, {
  375. 'words': true,
  376. 'nonwords': false
  377. }],
  378. 'spaced-comment': [2, 'always', {
  379. 'markers': ['global', 'globals', 'eslint', 'eslint-disable', '*package', '!', ',']
  380. }],
  381. 'template-curly-spacing': [2, 'never'],
  382. 'use-isnan': 2,
  383. 'valid-typeof': 2,
  384. 'wrap-iife': [2, 'any'],
  385. 'yield-star-spacing': [2, 'both'],
  386. 'yoda': [2, 'never'],
  387. 'prefer-const': 2,
  388. 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
  389. 'object-curly-spacing': [2, 'always', {
  390. objectsInObjects: false
  391. }],
  392. 'array-bracket-spacing': [2, 'never']
  393. }
  394. }