-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
524 additions
and
592 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,42 @@ | ||
//eslint-disable-next-line | ||
/*global systemDictionary:true */ | ||
"use strict"; | ||
|
||
systemDictionary = { | ||
"mercedesme adapter settings": { | ||
"en": "Adapter settings for mercedesme", | ||
"de": "Adaptereinstellungen für mercedesme", | ||
"ru": "Настройки адаптера для mercedesme", | ||
"pt": "Configurações do adaptador para mercedesme", | ||
"nl": "Adapterinstellingen voor mercedesme", | ||
"fr": "Paramètres d'adaptateur pour mercedesme", | ||
"it": "Impostazioni dell'adattatore per mercedesme", | ||
"es": "Ajustes del adaptador para mercedesme", | ||
"pl": "Ustawienia adaptera dla mercedesme", | ||
"zh-cn": "mercedesme的适配器设置" | ||
}, | ||
"option1": { | ||
"en": "option1", | ||
"de": "Option 1", | ||
"ru": "Опция 1", | ||
"pt": "Opção 1", | ||
"nl": "Optie 1", | ||
"fr": "Option 1", | ||
"it": "opzione 1", | ||
"es": "Opción 1", | ||
"pl": "opcja 1", | ||
"zh-cn": "选项1" | ||
}, | ||
"option2": { | ||
"en": "option2", | ||
"de": "Option 2", | ||
"ru": "option2", | ||
"pt": "opção 2", | ||
"nl": "Optie 2", | ||
"fr": "Option 2", | ||
"it": "opzione 2", | ||
"es": "opcion 2", | ||
"pl": "Opcja 2", | ||
"zh-cn": "选项2" | ||
} | ||
}; | ||
"mercedesme adapter settings": { | ||
en: "Adapter settings for mercedesme", | ||
de: "Adaptereinstellungen für mercedesme", | ||
ru: "Настройки адаптера для mercedesme", | ||
pt: "Configurações do adaptador para mercedesme", | ||
nl: "Adapterinstellingen voor mercedesme", | ||
fr: "Paramètres d'adaptateur pour mercedesme", | ||
it: "Impostazioni dell'adattatore per mercedesme", | ||
es: "Ajustes del adaptador para mercedesme", | ||
pl: "Ustawienia adaptera dla mercedesme", | ||
"zh-cn": "mercedesme的适配器设置", | ||
}, | ||
option1: { | ||
en: "option1", | ||
de: "Option 1", | ||
ru: "Опция 1", | ||
pt: "Opção 1", | ||
nl: "Optie 1", | ||
fr: "Option 1", | ||
it: "opzione 1", | ||
es: "Opción 1", | ||
pl: "opcja 1", | ||
"zh-cn": "选项1", | ||
}, | ||
option2: { | ||
en: "option2", | ||
de: "Option 2", | ||
ru: "option2", | ||
pt: "opção 2", | ||
nl: "Optie 2", | ||
fr: "Option 2", | ||
it: "opzione 2", | ||
es: "opcion 2", | ||
pl: "Opcja 2", | ||
"zh-cn": "选项2", | ||
}, | ||
}; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
const globals = require("globals"); | ||
const js = require("@eslint/js"); | ||
|
||
const { FlatCompat } = require("@eslint/eslintrc"); | ||
|
||
const compat = new FlatCompat({ | ||
baseDirectory: __dirname, | ||
recommendedConfig: js.configs.recommended, | ||
allConfig: js.configs.all, | ||
}); | ||
|
||
module.exports = [ | ||
{ | ||
ignores: ["**/build/", "**/.prettierrc.js", "**/.eslintrc.js", "**/Proto/"], | ||
}, | ||
...compat.extends("eslint:recommended"), | ||
{ | ||
plugins: {}, | ||
|
||
languageOptions: { | ||
globals: { | ||
...globals.node, | ||
...globals.mocha, | ||
}, | ||
|
||
ecmaVersion: 2020, | ||
sourceType: "commonjs", | ||
}, | ||
|
||
rules: { | ||
indent: [ | ||
"error", | ||
2, | ||
{ | ||
SwitchCase: 1, | ||
}, | ||
], | ||
|
||
"no-console": "off", | ||
"no-var": "error", | ||
"no-trailing-spaces": "error", | ||
"prefer-const": "error", | ||
|
||
quotes: [ | ||
"error", | ||
"double", | ||
{ | ||
avoidEscape: true, | ||
allowTemplateLiterals: true, | ||
}, | ||
], | ||
|
||
semi: ["error", "always"], | ||
}, | ||
}, | ||
]; |
This file contains 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
Oops, something went wrong.