Created
March 4, 2019 07:42
-
-
Save sharvit/05b8f0c98623fecfa9cdbcca98524eec to your computer and use it in GitHub Desktop.
.eslintrc file for foreman-plugins
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"plugins": ["patternfly-react"], | |
"extends": ["plugin:patternfly-react/recommended"], | |
"rules": { | |
"prettier/prettier": ["error", { | |
"singleQuote": true, | |
"trailingComma": "es5" | |
}], | |
"import/no-unresolved": ["error", { | |
"ignore": ['foremanReact/.*'] | |
}], | |
"import/extensions": ["error", { | |
"ignore": ['foremanReact/.*'] | |
}], | |
}, | |
"globals": { | |
"document": false, | |
"escape": false, | |
"navigator": false, | |
"unescape": false, | |
"window": false, | |
"$": true, | |
"_": true, | |
"__": true, | |
"n__": true, | |
"d3": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment