Skip to content

Commit

Permalink
Upgrade npm packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Socolin committed Apr 1, 2024
1 parent 329926d commit 5bf57ae
Show file tree
Hide file tree
Showing 6 changed files with 4,890 additions and 16,914 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
using Naheulbook.Core.Services;
using NUnit.Framework;

namespace Naheulbook.Core.Tests.Unit.Services;

[TestFixture]
[TestOf(typeof(NpcService))]
public class NpcServiceTest
{

}
49 changes: 49 additions & 0 deletions frontend/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"root": true,
"ignorePatterns": [
],
"overrides": [
{
"files": [
"*.ts"
],
"parserOptions": {
"project": [
"tsconfig.json"
],
"createDefaultProgram": true
},
"extends": [
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@angular-eslint/directive-selector": [
"error",
{
"type": "attribute",
"prefix": "admin",
"style": "camelCase"
}
],
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "admin",
"style": "kebab-case"
}
]
}
},
{
"files": [
"*.html"
],
"extends": [
"plugin:@angular-eslint/template/recommended"
],
"rules": {}
}
]
}
Loading

0 comments on commit 5bf57ae

Please sign in to comment.