-
Notifications
You must be signed in to change notification settings - Fork 163
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
301 changed files
with
34,280 additions
and
43,711 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,23 @@ | ||
* text=auto | ||
.gitattributes text | ||
*.css text eol=lf | ||
*.html text eol=lf | ||
*.js text eol=lf | ||
*.json text eol=lf | ||
*.kql text eol=lf | ||
*.lock text eol=lf | ||
*.md text eol=lf | ||
*.ts text eol=lf | ||
*.tsx text eol=lf | ||
*.txt text eol=lf | ||
*.yaml text eol=lf | ||
*.yml text eol=lf | ||
.npmrc text eol=lf | ||
|
||
*.cs text eol=crlf | ||
*.sln text eol=crlf | ||
*.csproj text eol=crlf | ||
|
||
|
||
*.png binary | ||
*.jpg binary |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# See https://docs.npmjs.com/misc/config for all the things you can do with this file. | ||
|
||
# This registry+auth setting allows us to fetch packages from our private office npm registry | ||
registry=https://registry.npmjs.org | ||
always-auth=true | ||
package-lock=true | ||
engine-strict=true |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
// cSpell Settings | ||
{ | ||
// Version of the setting file. Always 0.2 | ||
"version": "0.2", | ||
// language - current active spelling language | ||
"language": "en", | ||
// words - list of words to be always considered correct | ||
// prettier-ignore | ||
"words": [ | ||
"CODEOWNERS", | ||
"eqeqeq", | ||
"linebreak", | ||
"markdownlint", | ||
"minifier", | ||
"prettierrc", | ||
"Addin", | ||
"Addins", | ||
"Checkmark", | ||
"Consolas", | ||
"Copyable", | ||
"Customizer", | ||
"DOCTYPE", | ||
"Env's", | ||
"Intelli", | ||
"IntelliSense", | ||
"Lowercased", | ||
"Menlo", | ||
"Nico", | ||
"Popout", | ||
"PowerPoint", | ||
"Stringifiable", | ||
"Truthy", | ||
"Unmount", | ||
"Visio", | ||
"Zlatkovsky", | ||
"adhoc", | ||
"autoformat", | ||
"autoprefixer", | ||
"azurewebsites", | ||
"backend", | ||
"customfunction", | ||
"customfunction's", | ||
"customfunctionmanager", | ||
"devtools", | ||
"dialog's", | ||
"dogfood", | ||
"dogfooding", | ||
"dropdown", | ||
"else's", | ||
"filepath", | ||
"flexbox", | ||
"gitignore", | ||
"guid", | ||
"hardcoded", | ||
"iframe's", | ||
"injectable", | ||
"intellisense", | ||
"jsyaml", | ||
"jupyter", | ||
"keyframes", | ||
"localstorage", | ||
"loglevel", | ||
"minified", | ||
"monkeypatch", | ||
"officejs", | ||
"onenote", | ||
"overscroll", | ||
"parameterized", | ||
"polyfill", | ||
"polyfilling", | ||
"polyfills", | ||
"powepoint", | ||
"prereq", | ||
"promisify", | ||
"proxying", | ||
"redirector", | ||
"rehydrated", | ||
"repo", | ||
"reselect", | ||
"resizable", | ||
"scriptlab", | ||
"sideload", | ||
"sideloading", | ||
"stylesheet", | ||
"subfolders", | ||
"taskpane", | ||
"testid", | ||
"textfield", | ||
"transpiled", | ||
"typesafe", | ||
"uncomment", | ||
"uniquify", | ||
"unminified", | ||
"unpkg", | ||
"untrusted", | ||
"uppercased", | ||
"youtube" | ||
], | ||
// flagWords - list of words to be always considered incorrect | ||
// This is useful for offensive words and common spelling errors. | ||
// For example "hte" should be "the" | ||
"flagWords": [], | ||
|
||
"ignorePaths": [ | ||
"**/node_modules", | ||
"**/node_modules/**", | ||
"packages/editor/src/interfaces/monaco.d.ts", | ||
"**/packages/editor/src/utils/custom-functions/samples/**", | ||
"package.json" | ||
] | ||
} |
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,13 +1,13 @@ | ||
{ | ||
// See http://go.microsoft.com/fwlink/?LinkId=827846 | ||
// for the documentation about the extensions.json format | ||
"recommendations": [ | ||
// Extension identifier format: ${publisher}.${name} | ||
"esbenp.prettier-vscode", | ||
"vscode-icons-team.vscode-icons", | ||
"wayou.vscode-todo-highlight", | ||
"streetsidesoftware.code-spell-checker", | ||
"styled-components.vscode-styled-components", | ||
"dbaeumer.vscode-eslint" | ||
"esbenp.prettier-vscode", | ||
"dbaeumer.vscode-eslint", | ||
"davidanson.vscode-markdownlint", | ||
"bierner.github-markdown-preview", | ||
"streetsidesoftware.code-spell-checker", | ||
// Additional extensions | ||
"wayou.vscode-todo-highlight", | ||
"styled-components.vscode-styled-components", | ||
"vscode-icons-team.vscode-icons", | ||
] | ||
} |
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,17 +1,17 @@ | ||
module.exports = { | ||
presets: [ | ||
[ | ||
'@babel/preset-env', | ||
"@babel/preset-env", | ||
{ | ||
loose: true, | ||
targets: { | ||
browsers: ['ie >= 11'], | ||
browsers: [">0.25%", "not IE", "not op_mini all", "not dead"], | ||
}, | ||
exclude: ['proposal-dynamic-import'], | ||
exclude: ["proposal-dynamic-import"], | ||
}, | ||
], | ||
'@babel/preset-react', | ||
'@babel/preset-typescript', | ||
"@babel/preset-react", | ||
"@babel/preset-typescript", | ||
], | ||
plugins: ['babel-plugin-macros', 'syntax-jsx'], | ||
plugins: ["babel-plugin-macros", "syntax-jsx"], | ||
}; |
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,5 @@ | ||
{ | ||
"MD007": { "indent": 4 }, | ||
"MD013": false, | ||
"MD024": { "allow_different_nesting": true }, | ||
} |
Oops, something went wrong.