Node-Red configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.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. }