-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
1 parent
4e1a1c9
commit 7371e06
Showing
13 changed files
with
990 additions
and
253 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module.exports = { | ||
extends: ['@dagster-io/eslint-config', 'plugin:@docusaurus/recommended'], | ||
rules: { | ||
'import/no-default-export': 'off', | ||
'react/react-in-jsx-scope': 'off', | ||
}, | ||
}; |
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,6 @@ | ||
module.exports = { | ||
bracketSpacing: false, | ||
printWidth: 100, | ||
singleQuote: true, | ||
trailingComma: 'all', | ||
}; |
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,13 @@ | ||
exports.settings = { | ||
bullet: "-", | ||
emphasis: "_", | ||
strong: "*", | ||
listItemIndent: "one", | ||
rule: "-", | ||
}; | ||
exports.plugins = [ | ||
require("remark-frontmatter"), | ||
require("remark-preset-prettier"), | ||
// GitHub Flavored Markdown's table pipe alignment | ||
[require("remark-gfm"), { tablePipeAlign: true }], | ||
]; |
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,3 +1,3 @@ | ||
{ | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
} | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
} |
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
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
extends: substitution | ||
message: "Use the US spelling '%s' instead of the British '%s'." | ||
link: https://docs.gitlab.com/ee/development/documentation/styleguide/index.html#language | ||
level: error | ||
ignorecase: true | ||
swap: | ||
aeon: eon | ||
aeroplane: airplane | ||
ageing: aging | ||
aluminium: aluminum | ||
anaemia: anemia | ||
anaesthesia: anesthesia | ||
analyse: analyze | ||
annexe: annex | ||
apologise: apologize | ||
authorise: authorize | ||
authorised: authorized | ||
authorisation: authorization | ||
authorising: authorizing | ||
behaviour: behavior | ||
busses: buses | ||
calibre: caliber | ||
categorise: categorize | ||
categorised: categorized | ||
categorises: categorizes | ||
categorising: categorizing | ||
centre: center | ||
cheque: check | ||
civilisation: civilization | ||
civilise: civilize | ||
colour: color | ||
cosy: cozy | ||
cypher: cipher | ||
dependant: dependent | ||
defence: defense | ||
distil: distill | ||
draught: draft | ||
encyclopaedia: encyclopedia | ||
enquiry: inquiry | ||
enrol: enroll | ||
enrolment: enrollment | ||
enthral: enthrall | ||
# equalled: equaled // Under discussion | ||
# equalling: equaling // Under discussion | ||
favourite: favorite | ||
fibre: fiber | ||
fillet: filet | ||
flavour: flavor | ||
furore: furor | ||
fulfil: fulfill | ||
gaol: jail | ||
grey: gray | ||
humour: humor | ||
honour: honor | ||
initialled: initialed | ||
initialling: initialing | ||
instil: instill | ||
jewellery: jewelry | ||
labelling: labeling | ||
labelled: labeled | ||
labour: labor | ||
libellous: libelous | ||
licence: license | ||
likeable: likable | ||
liveable: livable | ||
lustre: luster | ||
manoeuvre: maneuver | ||
marvellous: marvelous | ||
matt: matte | ||
meagre: meager | ||
metre: meter | ||
modelling: modeling | ||
moustache: mustache | ||
neighbour: neighbor | ||
normalise: normalize | ||
offence: offense | ||
optimise: optimize | ||
optimised: optimized | ||
optimising: optimizing | ||
organise: organize | ||
orientated: oriented | ||
paralyse: paralyze | ||
plough: plow | ||
pretence: pretense | ||
programme: program | ||
pyjamas: pajamas | ||
rateable: ratable | ||
realise: realize | ||
recognise: recognize | ||
reconnoitre: reconnoiter | ||
rumour: rumor | ||
sabre: saber | ||
saleable: salable | ||
saltpetre: saltpeter | ||
sceptic: skeptic | ||
sepulchre: sepulcher | ||
signalling: signaling | ||
sizeable: sizable | ||
skilful: skillful | ||
sombre: somber | ||
smoulder: smolder | ||
speciality: specialty | ||
spectre: specter | ||
splendour: splendor | ||
standardise: standardize | ||
standardised: standardized | ||
sulphur: sulfur | ||
theatre: theater | ||
travelled: traveled | ||
traveller: traveler | ||
travelling: traveling | ||
unshakeable: unshakable | ||
wilful: willful | ||
yoghurt: yogurt |
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,8 @@ | ||
--- | ||
extends: existence | ||
message: "Remove whitespace characters from the end of the line." | ||
link: https://docs.gitlab.com/ee/development/documentation/versions.html | ||
level: warning | ||
scope: raw | ||
raw: | ||
- ' +\n' |
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,10 @@ | ||
extends: existence | ||
message: "Rename the heading '%s', or re-purpose the content elsewhere." | ||
level: warning | ||
link: https://docs.gitlab.com/ee/development/documentation/topic_types/concept.html#concept-topic-titles | ||
ignorecase: true | ||
nonword: true | ||
scope: raw | ||
tokens: | ||
- '\#+ How it works' | ||
- '\#+ Overview' |
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,10 @@ | ||
extends: substitution | ||
message: "Use '%s' instead of '%s', but consider rewriting the sentence." | ||
link: https://docs.gitlab.com/ee/development/documentation/styleguide/word_list.html | ||
level: warning | ||
nonword: true | ||
ignorecase: true | ||
swap: | ||
'\b(?:e\.?g[\s.,;:])': for example | ||
'\b(?:i\.?e[\s.,;:])': that is | ||
'\bvia\b': "with', 'through', or 'by using" |
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,8 @@ | ||
extends: existence | ||
message: "Use standard single quotes or double quotes only. Do not use left or right quotes." | ||
level: warning | ||
ignorecase: true | ||
link: https://docs.gitlab.com/ee/development/documentation/styleguide/index.html#punctuation | ||
scope: raw | ||
raw: | ||
- '[‘’“”]' |
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,15 @@ | ||
extends: substitution | ||
message: "%s" | ||
link: https://docs.gitlab.com/ee/development/documentation/styleguide/word_list.html | ||
level: suggestion | ||
ignorecase: true | ||
swap: | ||
a number of: "Specify the number or remove the phrase." | ||
as well as: "Use 'and' instead of 'as well as'." | ||
note that: "Remove the phrase 'note that'." | ||
please: "Use 'please' only if we've inconvenienced the user." | ||
respectively: "Remove 'respectively' and list each option instead." | ||
and so on: "Remove 'and so on'. Try to use 'like' and provide examples instead." | ||
in order to: "Remove 'in order' and leave 'to'." | ||
quite: "Remove 'quite', as it's wordy." | ||
|