-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DIGG-449: Organisationlink from dataset page
- Loading branch information
Showing
222 changed files
with
5,868 additions
and
3,910 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,14 +1,46 @@ | ||
{ | ||
"extends": ["next/core-web-vitals"], | ||
"plugins": ["prettier"], | ||
"extends": [ | ||
"next/core-web-vitals", | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:import/recommended", | ||
"plugin:import/typescript" | ||
], | ||
"plugins": ["prettier", "import", "@typescript-eslint"], | ||
"settings": { | ||
"import/resolver": { | ||
"typescript": true, | ||
"node": true | ||
} | ||
}, | ||
"rules": { | ||
"no-console": ["error", { "allow": ["warn", "error"] }], | ||
"react-hooks/exhaustive-deps": "off", | ||
"@next/next/no-sync-scripts": "off", | ||
"cypress": "off", | ||
"comma-dangle": "off", | ||
"@typescript-eslint/comma-dangle": "off", | ||
"no-unused-vars": 2, | ||
"prettier/prettier": "error" | ||
"no-unused-vars": ["error", { "argsIgnorePattern": "^_" }], | ||
"prettier/prettier": "error", | ||
"import/order": [ | ||
"error", | ||
{ | ||
"groups": [ | ||
"builtin", // Built-in imports (come from NodeJS native) go first | ||
"external", // <- External imports | ||
"internal", // <- Absolute imports | ||
["sibling", "parent"], // <- Relative imports, the sibling and parent types they can be mingled together | ||
"index", // <- index imports | ||
"unknown" // <- unknown | ||
], | ||
"newlines-between": "always", | ||
"alphabetize": { | ||
/* sort in ascending order. Options: ["ignore", "asc", "desc"] */ | ||
"order": "asc", | ||
/* ignore case. Options: [true, false] */ | ||
"caseInsensitive": true | ||
} | ||
} | ||
] | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
12 changes: 7 additions & 5 deletions
12
...ent/blocks/PromotedContentBlock/index.tsx → ...s/blocks/promoted-content-block/index.tsx
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
3 changes: 2 additions & 1 deletion
3
...nents/content/blocks/QuoteBlock/index.tsx → components/blocks/quote-block/index.tsx
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
9 changes: 5 additions & 4 deletions
9
...tent/blocks/RelatedContentBlock/index.tsx → ...ts/blocks/related-content-block/index.tsx
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
5 changes: 3 additions & 2 deletions
5
...onents/content/blocks/TextBlock/index.tsx → components/blocks/text-block/index.tsx
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
8 changes: 5 additions & 3 deletions
8
...nents/content/blocks/VideoBlock/index.tsx → components/blocks/video-block/index.tsx
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.