diff --git a/.editorconfig b/.editorconfig
index 13791d24e61f6bfeb84884aac8d0356e8bcd8ded..da178f07071d4ab3aef27bd7a8b762f630597fa8 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -5,9 +5,3 @@ indent_style = tab
 indent_size = 2
 charset = utf-8
 insert_final_newline = true
-
-[*.json]
-indent_style = space
-
-[*.yml]
-indent_style = space
diff --git a/package.json b/package.json
index aac498417b45eea0b1db3ef4dafe447ade65bdcc..78e77c3c4ab38ae073a6829f0b8323d4fd85d11a 100644
--- a/package.json
+++ b/package.json
@@ -1,39 +1,39 @@
 {
-  "name": "misskey-js",
-  "version": "0.0.0",
-  "description": "Misskey SDK for JavaScript",
-  "main": "./built/index.js",
-  "types": "./built/index.d.ts",
-  "scripts": {
-    "build": "npm run tsc",
-    "tsc": "tsc",
-    "tsd": "tsd",
-    "jest": "jest",
-    "test": "npm run jest && npm run tsd"
-  },
-  "repository": {
-    "type": "git",
-    "url": "git+https://github.com/misskey-dev/misskey.js.git"
-  },
-  "devDependencies": {
-    "@types/jest": "^26.0.23",
-    "@types/node": "14.14.x",
-    "jest": "^26.6.3",
-    "jest-fetch-mock": "^3.0.3",
-    "jest-websocket-mock": "^2.2.0",
-    "mock-socket": "^9.0.3",
-    "ts-jest": "^26.5.6",
-    "ts-node": "9.1.x",
-    "tsd": "^0.14.0",
-    "typescript": "4.2.x"
-  },
-  "files": [
-    "built"
-  ],
-  "dependencies": {
-    "@vue/reactivity": "^3.0.11",
-    "autobind-decorator": "^2.4.0",
-    "eventemitter3": "^4.0.7",
-    "reconnecting-websocket": "^4.4.0"
-  }
+	"name": "misskey-js",
+	"version": "0.0.0",
+	"description": "Misskey SDK for JavaScript",
+	"main": "./built/index.js",
+	"types": "./built/index.d.ts",
+	"scripts": {
+		"build": "npm run tsc",
+		"tsc": "tsc",
+		"tsd": "tsd",
+		"jest": "jest",
+		"test": "npm run jest && npm run tsd"
+	},
+	"repository": {
+		"type": "git",
+		"url": "git+https://github.com/misskey-dev/misskey.js.git"
+	},
+	"devDependencies": {
+		"@types/jest": "^26.0.23",
+		"@types/node": "14.14.x",
+		"jest": "^26.6.3",
+		"jest-fetch-mock": "^3.0.3",
+		"jest-websocket-mock": "^2.2.0",
+		"mock-socket": "^9.0.3",
+		"ts-jest": "^26.5.6",
+		"ts-node": "9.1.x",
+		"tsd": "^0.14.0",
+		"typescript": "4.2.x"
+	},
+	"files": [
+		"built"
+	],
+	"dependencies": {
+		"@vue/reactivity": "^3.0.11",
+		"autobind-decorator": "^2.4.0",
+		"eventemitter3": "^4.0.7",
+		"reconnecting-websocket": "^4.4.0"
+	}
 }
diff --git a/tsconfig.json b/tsconfig.json
index f882a54c7388cb26cc650aca908273620aee8b9c..65fd4944461e1f45f7ca23eb2e5f835bb83d5e28 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,23 +1,23 @@
 {
-  "compilerOptions": {
-    "target": "es2017",
-    "module": "commonjs",
-    "declaration": true,
-    "outDir": "./built/",
-    "rootDir": "./src/",
-    "removeComments": true,
-    "strict": true,
-    "strictFunctionTypes": true,
-    "strictNullChecks": true,
-    "experimentalDecorators": true,
-    "noImplicitReturns": true,
-    "esModuleInterop": true,
-  },
-  "include": [
-    "src/**/*",
-  ],
-  "exclude": [
-    "node_modules",
-    "test/**/*",
-  ]
+	"compilerOptions": {
+		"target": "es2017",
+		"module": "commonjs",
+		"declaration": true,
+		"outDir": "./built/",
+		"rootDir": "./src/",
+		"removeComments": true,
+		"strict": true,
+		"strictFunctionTypes": true,
+		"strictNullChecks": true,
+		"experimentalDecorators": true,
+		"noImplicitReturns": true,
+		"esModuleInterop": true,
+	},
+	"include": [
+		"src/**/*",
+	],
+	"exclude": [
+		"node_modules",
+		"test/**/*",
+	]
 }