프리티어 변경

필터링 AND OR 조건 추가
데이터 JSON 구조 변경
(오류 발생 리스트 형식 안나오는중)
This commit is contained in:
2026-02-22 15:11:22 +09:00
parent 42b5c0f047
commit c8e0aa46f9
11 changed files with 1206 additions and 908 deletions

24
.prettierrc.js Normal file
View File

@@ -0,0 +1,24 @@
/** @type {import("prettier").Config} */
module.exports = {
printWidth: 300,
tabWidth: 4,
useTabs: false,
semi: true,
singleQuote: true,
trailingComma: 'all',
bracketSameLine: true,
bracketSpacing: true,
arrowParens: 'always',
endOfLine: 'auto',
htmlWhitespaceSensitivity: 'ignore',
embeddedLanguageFormatting: 'auto',
overrides: [
{
files: ['games.js', 'tech.js', 'furniture.js'],
options: {
printWidth: 100,
},
},
],
};