UNPKG

feeles-ide

Version:

The hackable and serializable IDE to make learning material

24 lines (22 loc) 537 B
module.exports = { env: { browser: true, commonjs: true, es6: true, node: true }, extends: ['eslint:recommended', 'plugin:react/recommended'], parser: 'babel-eslint', plugins: ['react'], rules: { indent: ['off', 2], 'linebreak-style': ['error', 'unix'], quotes: ['error', 'single', { allowTemplateLiterals: true }], semi: ['error', 'always'], 'no-console': 'off', 'no-debugger': 'off', 'no-useless-escape': 'warn', 'no-unused-vars': 'warn', 'react/jsx-key': 'warn' } };