mirror of
https://github.com/zebrajr/react.git
synced 2025-12-07 00:20:28 +01:00
This allows us to load the eslint rules without requiring command-line arguments, which avoids breaking editors with eslint plugins. https://github.com/eslint/eslint/issues/2180#issuecomment-87722150
8 lines
128 B
JavaScript
8 lines
128 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
rules: {
|
|
'warning-and-invariant-args': require('./warning-and-invariant-args'),
|
|
},
|
|
};
|