Skip to content

Commit

Permalink
Merge pull request #6 from SinclaM/extend-mathquill
Browse files Browse the repository at this point in the history
Add new supported symbols by extending MathQuill
  • Loading branch information
SinclaM committed Jul 18, 2022
2 parents b5df93f + f036741 commit e9aa3ba
Show file tree
Hide file tree
Showing 36 changed files with 23,788 additions and 14,482 deletions.
55 changes: 55 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/errors",
"plugin:import/warnings",
],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: 12,
sourceType: "module",
},
plugins: ["@typescript-eslint", "import"],
ignorePatterns: ["dist/*", "webpack/*", ".eslintrc.js"],
rules: {
"linebreak-style": ["error", "unix"],
quotes: ["error", "double"],
semi: ["error", "always"],
"eol-last": ["error", "always"],
"import/newline-after-import": [
"error",
{
count: 1,
},
],
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"no-console": "warn",
"no-constant-condition": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/ban-types": [
"off",
{
types: {
Function: "",
},
},
],
},
settings: {
"import/resolver": {
node: {
extensions: [".js", ".jsx", ".ts", ".tsx"],
},
},
},
};
43 changes: 0 additions & 43 deletions .eslintrc.json

This file was deleted.

3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules/
node_modules/
dist/
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"printWidth": 120,
"singleQuote": true,
"singleQuote": false,
"trailingComma": "es5",
"tabWidth": 4
}
4 changes: 0 additions & 4 deletions babel.config.js

This file was deleted.

Loading

0 comments on commit e9aa3ba

Please sign in to comment.