Skip to content

Commit

Permalink
remove prettier bullshit. Use specific language id
Browse files Browse the repository at this point in the history
  • Loading branch information
redaphid committed Jan 11, 2025
1 parent 8a01ee4 commit 893936c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 20 deletions.
5 changes: 0 additions & 5 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,5 @@
"parserOptions": {
"ecmaVersion": 2023,
"sourceType": "module"
},
"plugins": ["prettier"],

"rules": {
"prettier/prettier": "warn"
}
}
2 changes: 1 addition & 1 deletion .github/workflows/submit-shader.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
return inUserFolder && isFragmentShader;
});
core.setOutput('valid_scope', isValidScope); // Correct way to set output
core.setOutput('valid_scope', isValidScope.toString());
if (!isValidScope) {
console.log("PR contains changes outside the user's specific directory.");
} else {
Expand Down
7 changes: 0 additions & 7 deletions .prettierrc

This file was deleted.

9 changes: 5 additions & 4 deletions vscode-extension/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
},
"devDependencies": {
"@types/node": "^22.x",
"@types/vscode": "^1.93.1",
"typescript": "^5.x",
"@vscode/vsce": "^3.x"
"@types/vscode": "^1.96.0",
"@vscode/vsce": "^3.x",
"typescript": "^5.x"
},
"files": [
"logo.png",
Expand Down

0 comments on commit 893936c

Please sign in to comment.