mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
4a23cb3415
* Output Action Cable JS without transpiling and as ESM
* Retain umd version under the old name, generate ESM version + duplicate under new name
* Precompile JavaScripts for direct asset pipeline use
* We've dropped support for IE11
* Include deprecation notice for the old file reference
Thanks @rafaelfranca 👍
* Allow app to opt out of precompiling actioncable js assets
cc @rafaelfranca
* Add changelog entries
20 lines
376 B
Text
20 lines
376 B
Text
{
|
|
"extends": "eslint:recommended",
|
|
"rules": {
|
|
"semi": ["error", "never"],
|
|
"quotes": ["error", "double"],
|
|
"no-unused-vars": ["error", { "vars": "all", "args": "none" }],
|
|
"no-console": "off"
|
|
},
|
|
"plugins": [
|
|
"import"
|
|
],
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 6,
|
|
"sourceType": "module"
|
|
}
|
|
}
|