Skip to content

Commit

Permalink
Merge pull request quoid#98 from quoid/v3.0.0
Browse files Browse the repository at this point in the history
V3.0.0
  • Loading branch information
quoid authored Jan 24, 2021
2 parents ff6f92b + 9aa32e8 commit c6d5d9f
Show file tree
Hide file tree
Showing 131 changed files with 7,275 additions and 62,447 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/node_modules/
/public/build/
98 changes: 98 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
{
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": ["eslint:recommended"],
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"svelte3"
],
"overrides": [
{
"files": ["*.svelte"],
"processor": "svelte3/svelte3"
}
],
"globals": {
"safari": "writable",
"_safari": "readonly"
},
"rules": {
"array-bracket-spacing": [
"error",
"never"
],
"arrow-parens": [
"error",
"as-needed"
],
"comma-spacing": [
"error",
{
"before": false,
"after": true
}
],
"dot-notation": "error",
"indent": [
"error",
4,
{
"SwitchCase": 1
}
],
"linebreak-style": [
"error",
"unix"
],
"keyword-spacing": [
"error",
{
"after": true,
"before": true
}
],
"no-unused-vars": [
"error",
{
"args": "none"
}
],
"object-curly-spacing": [
"error",
"never"
],
"operator-assignment": [
"error",
"always"
],
"operator-linebreak": [
"error",
"before"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always",
{
"omitLastInOneLineBlock": true
}
],
"space-in-parens": [
"error",
"never"
],
"require-jsdoc": [
"off"
],
"jsx-a11y/a11y-missing-attribute": "off"
}
}
75 changes: 12 additions & 63 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,66 +1,15 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# next.js build output
.next

build/
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

/node_modules/
/public/build/
/temp/

# xcode
xcuserdata/
Expand Down
18 changes: 18 additions & 0 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"extends": "stylelint-config-standard",
"rules": {
"comment-empty-line-before": [
"always",
{
"ignore": ["after-comment", "stylelint-commands"]
}
],
"indentation": 4,
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": ["global"]
}
]
}
}
12 changes: 12 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"files.associations": {
".htmlhintrc": "json"
},
"eslint.validate": [
"svelte"
],
"svelte.plugin.svelte.compilerWarnings": {
"a11y-missing-attribute": "error"
},
"svelte.plugin.svelte.rename.enable": false
}
88 changes: 0 additions & 88 deletions CHANGELOG.md

This file was deleted.

Loading

0 comments on commit c6d5d9f

Please sign in to comment.