Skip to content

Commit

Permalink
remove cordova and unnessecary dependencies; reorganize project struc…
Browse files Browse the repository at this point in the history
…ture

- [CORE-635]
  • Loading branch information
Tobias Winkler committed Feb 26, 2020
1 parent c2e82ec commit fa6a297
Show file tree
Hide file tree
Showing 159 changed files with 568 additions and 4,547 deletions.
17 changes: 0 additions & 17 deletions .editorconfig

This file was deleted.

1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

42 changes: 0 additions & 42 deletions GoogleService-Info.plist

This file was deleted.

661 changes: 0 additions & 661 deletions LICENSE.txt

This file was deleted.

117 changes: 0 additions & 117 deletions config.xml

This file was deleted.

48 changes: 48 additions & 0 deletions eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
module.exports = {
env: {
browser: true,
es6: true,
},
extends: [
'airbnb-base',
'eslint:recommended',
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
rules: {
/**
* ESLint and Airbnb related rules
* https://eslint.org/docs/rules/
*/
'import/extensions': 'off', // disabled to avoid collision with TS
'import/no-extraneous-dependencies': 'off', // disabled to avoid collision with TS
'import/no-unresolved': 'off', // disabled to avoid collision with TS
'import/prefer-default-export': 'off', // too restrictive
'max-len': ['warn', { code: 120 }],
'multiline-comment-style': ['warn', 'bare-block'], // fix formatting license
"no-param-reassign": [
"error",
{
"props": true,
"ignorePropertyModificationsFor": [
"state",
"dispatcherData"
]
}
]
},
overrides: [
{
files: [ '**/*.ts' ],
extends: [
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
],
plugins: [
'@typescript-eslint',
]
}
]
};
42 changes: 0 additions & 42 deletions google-services.json

This file was deleted.

Loading

0 comments on commit fa6a297

Please sign in to comment.