Skip to content

Commit 304dad7

Browse files
committed
build: Generate new build artifacts and update package-lock.json.
1 parent 001a0f1 commit 304dad7

569 files changed

Lines changed: 335638 additions & 9234 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintrc.js

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
module.exports = {
2+
extends: [
3+
'eslint:recommended',
4+
'plugin:react/recommended',
5+
'plugin:react-hooks/recommended',
6+
'plugin:@typescript-eslint/recommended',
7+
'plugin:@docusaurus/recommended',
8+
'plugin:prettier/recommended', // Make sure this is always the last element in the array.
9+
],
10+
settings: {
11+
react: {
12+
version: 'detect',
13+
},
14+
},
15+
env: {
16+
browser: true,
17+
node: true,
18+
es6: true,
19+
},
20+
rules: {
21+
// Add your custom rules here
22+
'react/react-in-jsx-scope': 'off', // Not needed with React 17+
23+
'react/prop-types': 'off', // We use TypeScript for prop validation
24+
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
25+
},
26+
};

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,8 @@
55
Thumbs.db
66

77
# Docusaurus
8-
.docusaurus
8+
.docusaurus
9+
node_modules
10+
11+
# IDE
12+
.idea

.prettierrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"printWidth": 80,
3+
"tabWidth": 2,
4+
"useTabs": false,
5+
"semi": true,
6+
"singleQuote": true,
7+
"trailingComma": "all",
8+
"bracketSpacing": true,
9+
"arrowParens": "always"
10+
}

build/.nojekyll

Whitespace-only changes.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
ace.define("ace/snippets/csound_document.snippets",["require","exports","module"], function(require, exports, module){module.exports = "# <CsoundSynthesizer>\nsnippet synth\n\t<CsoundSynthesizer>\n\t<CsInstruments>\n\t${1}\n\t</CsInstruments>\n\t<CsScore>\n\te\n\t</CsScore>\n\t</CsoundSynthesizer>\n";
2+
3+
});
4+
5+
ace.define("ace/snippets/csound_document",["require","exports","module","ace/snippets/csound_document.snippets"], function(require, exports, module){"use strict";
6+
exports.snippetText = require("./csound_document.snippets");
7+
exports.scope = "csound_document";
8+
9+
}); (function() {
10+
ace.require(["ace/snippets/csound_document"], function(m) {
11+
if (typeof module == "object" && typeof exports == "object" && module) {
12+
module.exports = m;
13+
}
14+
});
15+
})();
16+

0 commit comments

Comments
 (0)