UNPKG

310 BJavaScriptView Raw
1module.exports = {
2 plugins: ['babel'],
3 rules: {
4 'babel/new-cap': 'off',
5 'babel/no-invalid-this': 'error',
6 'babel/object-curly-spacing': ['error', 'always'],
7 'babel/quotes': 'off',
8 'babel/semi': 'off',
9 'babel/no-unused-expressions': 'error',
10 'babel/valid-typeof': 'off',
11 },
12};