forked from overture-stack/arranger
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix miscelaneous bugs found during integration
bonus: port some features added to Arranger 2 - make date range agg use today as max - improve date range agg UI features - improve exporter customisation logic - adds date handling in TSV exports - adds array fields functionality
- Loading branch information
1 parent
00334db
commit c016126
Showing
39 changed files
with
982 additions
and
259 deletions.
There are no files selected for viewing
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,54 +1,55 @@ | ||
module.exports = { | ||
env: { | ||
es6: true, | ||
node: true, | ||
}, | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
'plugin:import/recommended', | ||
'plugin:import/typescript', | ||
'prettier', | ||
], | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
ecmaVersion: 'latest', | ||
}, | ||
plugins: ['@typescript-eslint', 'prettier'], | ||
root: true, | ||
rules: { | ||
'@typescript-eslint/no-empty-interface': [ | ||
'warn', | ||
{ | ||
allowSingleExtends: false, | ||
}, | ||
], | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
'@typescript-eslint/no-var-requires': 'off', | ||
'import/first': ['warn', 'absolute-first'], | ||
'import/order': [ | ||
'warn', | ||
{ | ||
groups: ['builtin', 'external', 'internal', 'parent', 'sibling', 'index'], | ||
'newlines-between': 'always', | ||
warnOnUnassignedImports: true, | ||
}, | ||
], | ||
'import/newline-after-import': 'warn', | ||
'prettier/prettier': [ | ||
'error', | ||
{ | ||
printWidth: 100, | ||
semi: true, | ||
singleQuote: true, | ||
trailingComma: 'all', | ||
}, | ||
], | ||
}, | ||
settings: { | ||
'import/resolver': { | ||
'babel-module': { allowExistingDirectories: true }, | ||
}, | ||
'import/internal-regex': '^@/', | ||
}, | ||
env: { | ||
es6: true, | ||
node: true, | ||
}, | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
'plugin:import/recommended', | ||
'plugin:import/typescript', | ||
'prettier', | ||
], | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
ecmaVersion: 'latest', | ||
}, | ||
plugins: ['@typescript-eslint', 'prettier'], | ||
root: true, | ||
rules: { | ||
'@typescript-eslint/no-empty-interface': [ | ||
'warn', | ||
{ | ||
allowSingleExtends: false, | ||
}, | ||
], | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
'@typescript-eslint/no-var-requires': 'off', | ||
'import/first': ['warn', 'absolute-first'], | ||
'import/order': [ | ||
'warn', | ||
{ | ||
groups: ['builtin', 'external', 'internal', 'parent', 'sibling', 'index'], | ||
'newlines-between': 'always', | ||
warnOnUnassignedImports: true, | ||
}, | ||
], | ||
'import/newline-after-import': 'warn', | ||
'prettier/prettier': [ | ||
'error', | ||
{ | ||
printWidth: 100, | ||
trailingComma: 'all', | ||
semi: true, | ||
singleQuote: true, | ||
useTabs: true, | ||
}, | ||
], | ||
}, | ||
settings: { | ||
'import/resolver': { | ||
'babel-module': { allowExistingDirectories: true }, | ||
}, | ||
'import/internal-regex': '^@/', | ||
}, | ||
}; |
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 |
---|---|---|
|
@@ -7,3 +7,5 @@ lerna-debug.log | |
**/.DS_Store | ||
**/*.env* | ||
!**/.env.schema | ||
|
||
.vscode/*log |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Oops, something went wrong.