Skip to content

Commit

Permalink
Merge pull request #28 from Sv443-Network/version/1.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Sv443 authored Aug 8, 2021
2 parents 79e7993 + 141e307 commit 45c0fef
Show file tree
Hide file tree
Showing 19 changed files with 351 additions and 245 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/1_bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Bug report
about: Create a bug report to help improve SvCoreLib
title: "[Bug] "
labels: "\U0001F41B bug"
labels: "bug"
assignees: Sv443

---
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/2_feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Feature request
about: Suggest a feature or an idea for SvCoreLib
title: "[Feature] "
labels: "enhancement"
labels: "enhancement"
assignees: Sv443

---
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/3_change_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Change request
about: Suggest changes to an already existing feature
title: "[Change] "
labels: "enhancement"
labels: "enhancement"
assignees: Sv443

---
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ contact_links:
-
name: "Documentation"
about: "Please read the documentation before opening a new issue"
url: "https://github.com/Sv443-Network/SvCoreLib/wiki"
url: "https://github.com/Sv443-Network/SvCoreLib/blob/master/docs.md#readme"
-
name: "Chat"
name: "Discord"
about: "If you want to chat with the Sv443 Network community or need help, you can join the Discord server"
url: "https://dc.sv443.net"
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
env:
CI: "true"
- name: Install ESLint # installs ESLint - idk why it doesn't pull this out of the devDependencies but whatever
run: npm i -g eslint
run: |
npm i -g eslint
npm i -D eslint
env:
CI: "true"
- name: Run ESLint # Runs ESLint on the project
Expand Down Expand Up @@ -52,4 +54,3 @@ jobs:
with:
args: '🚫 **SvCoreLib CI** (triggered by `{{GITHUB_ACTOR}}` on `{{GITHUB_REF}}`) has failed (see https://github.com/Sv443-Network/SvCoreLib/commit/{{GITHUB_SHA}}/checks)'
if: failure()

File renamed without changes.
77 changes: 3 additions & 74 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,44 +2,12 @@
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# 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
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://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
# Dependency directory
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/
Expand All @@ -53,12 +21,6 @@ typings/
# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

Expand All @@ -70,40 +32,7 @@ typings/

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port



# dev test files
test.js
test.ts
test.ts
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ package-npm.json
.editorconfig
test.js
test.ts
docs.md
4 changes: 4 additions & 0 deletions .snyk
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities.
version: v1.19.0
ignore: {}
patch: {}
44 changes: 33 additions & 11 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,30 @@
{
// requires extension "coenraads.bracket-pair-colorizer-2"
"bracket-pair-colorizer-2.colors": [
"#4B8AE3",
"#0f6a8f",
"#659061",
"#41BCA3",
"#EDD553",
"#E09563",
"#B85442"
"#41bca3",
"#edd553",
"#e09563",
"#b85442",
"#8ced68",
"#7d56a6",
],

// requires extension "fabiospampinato.vscode-highlight"
"highlight.regexFlags": "g",
"highlight.regexes": {
"((jsl\\.|scl\\.)?unused\\([a-zA-Z_,\\[\\]\\s\"'$]+\\);*)": [ // jsl.unused([some_var, some_other_var]); or scl.unused("foo"); or just unused(variable)
"((scl\\.)?unused\\([a-zA-Z_,\\[\\]\\s\\-\":.]*\\)\\s*;?)": [ // scl.unused(xy); or just unused(xy);
{
"backgroundColor": "rgba(0, 0, 0, 0.2)",
"color": "#f88"
"backgroundColor": "inherit",
"color": "rgba(221, 102, 102, 0.75)"
}
],
"(TODO:?)": [ // TODO: or TODO but not todo
{
"backgroundColor": "#cd5",
"color": "#000",
"overviewRulerColor": "#cd5"
}
],
"(#MARKER)": [ // #MARKER test
Expand All @@ -25,19 +35,31 @@
"overviewRulerColor": "#f41"
}
],
"(#SECTION ([^\\S\\r\\n]*\\w+)*[:]*)": [ // #SECTION test
"(#SECTION ([^\\S\\r\\n]*[\\w,.\\-_&]+)*[:]*)": [ // #SECTION test, 123 & foo
{
"backgroundColor": "#44f",
"color": "white",
"overviewRulerColor": "#44f"
}
],
"(#DEBUG#?)": [ // #DEBUG# or just #DEBUG
"(#DEBUG#?)": [ // #DEBUG# or #DEBUG
{
"backgroundColor": "#ff0",
"color": "blue",
"overviewRulerColor": "#ff0"
}
]
],
"(IMPORTANT:)": [ // IMPORTANT:
{
"backgroundColor": "#a22",
"color": "#fff"
}
],
"(FIXME:)": // FIXME:
{
"backgroundColor": "#a22",
"color": "#fff",
"overviewRulerColor": "#752020"
}
},
}
Loading

0 comments on commit 45c0fef

Please sign in to comment.