scratch-gui/test/.eslintrc.js
rschamp 3c6bfe0607 Add Jest-specific linting rules
Adding this caught a couple of important things:
- The sound integration tests have a `.only` in them
- The project-saver-hoc tests had two tests with the same description, causing possible confusion if that test broke
2019-08-01 11:31:01 -04:00

12 lines
228 B
JavaScript

module.exports = {
extends: ['scratch/react', 'scratch/es6', 'plugin:jest/recommended'],
env: {
browser: true,
jest: true
},
plugins: ['jest'],
rules: {
'react/prop-types': 0
}
};