.eslintrc.js 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * ********************************************************************************************************************
  3. *
  4. * :*$@@%$*: ;: ;; ;;
  5. * :@@%! :!@@%: %! ;%%@@%$ =@@@@@@@%; @%@@@%%%%@@@@@
  6. * :@%; :$= %%$$$%$$ ;$$ ;$@= !@$
  7. * =@! %! @ $=;% !@@@%: !$$$$$$$$$$$$$$=
  8. * =@* %! @ $= % %@= =%@! %=
  9. * *$%%! @@= ;=$%%%$*: %! @ $= % =%%%%%%@$ *%: =%
  10. * %@@!: !@@@%=$@@@@%! :*@@$: %! @ $= % $* ;@ @* :%*
  11. * ;@@! ;!!!;: ;@%: =======@%========* @ $$ % $%*****$@ :@$=*********=@$
  12. * $@* ;@@@%=!: *@*
  13. * =@$ ;;;!=%@@@@=! =@!
  14. * %@$: =@%: :*@@@* %@= Copyright (c) 2016-2019. 北京上格云技术有限公司
  15. * ;%@@$=$@@%* *@@@$=%@@%;
  16. * ::;:: ::;:: All rights reserved.
  17. *
  18. * ********************************************************************************************************************
  19. */
  20. module.exports = {
  21. root: true,
  22. parser: '@typescript-eslint/parser',
  23. extends: [
  24. 'plugin:@typescript-eslint/recommended',
  25. // Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier
  26. 'prettier/@typescript-eslint',
  27. // Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
  28. // 此行必须在最后
  29. 'plugin:prettier/recommended'
  30. ],
  31. env: {
  32. es6: true,
  33. node: true
  34. },
  35. parserOptions: {
  36. // 支持最新 JavaScript
  37. ecmaVersion: 2018,
  38. sourceType: 'module'
  39. },
  40. rules: {
  41. // 缩进
  42. 'indent': ['error', 4, { SwitchCase: 1 }], // 缩进控制4空格
  43. 'max-len': ['error', 120], // 每行字符不超过120
  44. 'no-mixed-spaces-and-tabs': 'error', // 禁止使用空格和tab混合缩进
  45. // 语句
  46. 'curly': ["error", "multi-line"], // if、else if、else、for、while强制使用大括号,但允许在单行中省略大括号。
  47. 'semi': ['error', 'always'], //不得省略语句结束的分号
  48. '@typescript-eslint/no-unused-vars': 'off', // 取消未使用变量检查
  49. '@typescript-eslint/explicit-member-accessibility': ['error', { accessibility: 'no-public' }] // public访问不需加访问修饰符
  50. }
  51. };