mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-25 19:23:55 +00:00
Move camelcase linting exception to linting config
Ref: https://github.com/transloadit/uppy/pull/1673 Q: Should we just name those vars `locale` or `obj` or whatever? No need to have the locale name in it i think? So no `const fr_FR = {}` but `const locale = {}` ? /cc @arturi
This commit is contained in:
parent
324ba3d066
commit
fe0e9143fd
17 changed files with 9 additions and 34 deletions
|
|
@ -41,5 +41,12 @@
|
|||
"rules": {
|
||||
"compat/compat": "off"
|
||||
}
|
||||
},{
|
||||
"files": [
|
||||
"packages/@uppy/locales/src/*.js"
|
||||
],
|
||||
"rules": {
|
||||
"camelcase": 0
|
||||
}
|
||||
}]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,4 @@
|
|||
/* eslint camelcase: 0 */
|
||||
|
||||
var de_DE = {}
|
||||
const de_DE = {}
|
||||
|
||||
de_DE.strings = {
|
||||
addMoreFiles: 'Dateien hinzufügen',
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
/* eslint camelcase: 0 */
|
||||
|
||||
const en_US = {}
|
||||
|
||||
en_US.strings = {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
/* eslint camelcase: 0 */
|
||||
|
||||
const es_ES = {}
|
||||
|
||||
es_ES.strings = {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,4 @@
|
|||
/* eslint camelcase: 0 */
|
||||
|
||||
var es_GL = {}
|
||||
const es_GL = {}
|
||||
|
||||
es_GL.strings = {
|
||||
addMoreFiles: 'Agregar máis arquivos',
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
/* eslint camelcase: 0 */
|
||||
|
||||
const fa_IR = {}
|
||||
|
||||
fa_IR.strings = {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
/* eslint camelcase: 0 */
|
||||
|
||||
const fr_FR = {}
|
||||
|
||||
fr_FR.strings = {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
/* eslint camelcase: 0 */
|
||||
|
||||
const hu_HU = {}
|
||||
|
||||
hu_HU.contributors = ['nagyv']
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
/* eslint camelcase: 0 */
|
||||
|
||||
const it_IT = {}
|
||||
|
||||
it_IT.strings = {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
/* eslint camelcase: 0 */
|
||||
|
||||
const ja_JP = {}
|
||||
|
||||
ja_JP.strings = {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
/* eslint camelcase: 0 */
|
||||
|
||||
const nl_NL = {}
|
||||
|
||||
nl_NL.strings = {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
/* eslint camelcase: 0 */
|
||||
|
||||
const pt_BR = {}
|
||||
|
||||
pt_BR.strings = {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
/* eslint camelcase: 0 */
|
||||
|
||||
const ru_RU = {}
|
||||
|
||||
ru_RU.strings = {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
/* eslint camelcase: 0 */
|
||||
|
||||
const sr_RS_Latin = {}
|
||||
|
||||
sr_RS_Latin.strings = {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
/* eslint camelcase: 0 */
|
||||
|
||||
const tr_TR = {}
|
||||
|
||||
tr_TR.strings = {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
/* eslint camelcase: 0 */
|
||||
|
||||
const zh_CN = {}
|
||||
|
||||
zh_CN.strings = {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
/* eslint camelcase: 0 */
|
||||
|
||||
const zh_TW = {}
|
||||
|
||||
zh_TW.strings = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue