mirror of
https://github.com/danog/react-datalist-input.git
synced 2024-12-03 09:57:50 +01:00
0423540ae7
- moves project to babel 7 - moves from webpack to rollup - adds react and react-dom to dev dependencies - adds react-testing-libary and jest - adds first unit test - adds eslint and eslint plugins to dev dependencies
15 lines
287 B
Plaintext
15 lines
287 B
Plaintext
{
|
|
"extends": "airbnb",
|
|
"parser": "babel-eslint",
|
|
"env": {
|
|
"browser": true,
|
|
"jasmine": true
|
|
},
|
|
"plugins": [
|
|
"react",
|
|
"jest-dom"
|
|
],
|
|
"rules": {
|
|
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }]
|
|
}
|
|
} |