Node-Red configuration
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

.eslintrc.js 259B

12345678910111213141516171819
  1. module.exports = {
  2. env: {
  3. browser: true,
  4. commonjs: true,
  5. es6: true
  6. },
  7. extends: [
  8. 'standard'
  9. ],
  10. globals: {
  11. Atomics: 'readonly',
  12. SharedArrayBuffer: 'readonly'
  13. },
  14. parserOptions: {
  15. ecmaVersion: 2018
  16. },
  17. rules: {
  18. }
  19. }