Reactos

Revert "[CURSOR] Add Cursor AI project settings (#7752)" (#7913)

Reverts #7752
JIRA issue: CORE-20011

authored by

Katayama Hirofumi MZ and committed by
GitHub
b33127f4 ba676068

-119
-19
.cursor/coding-style.json
··· 1 - { 2 - "indentation": { 3 - "type": "spaces", 4 - "size": 4 5 - }, 6 - "lineLength": 100, 7 - "braceStyle": "allman", 8 - "namingConventions": { 9 - "functions": { 10 - "public": "PascalCase", 11 - "private": "_PascalCase" 12 - }, 13 - "variables": { 14 - "local": "camelCase", 15 - "global": "PascalCase", 16 - "constants": "UPPER_CASE" 17 - } 18 - } 19 - }
-52
.cursor/editor.json
··· 1 - { 2 - "editor": { 3 - "defaultFormatter": null 4 - }, 5 - "[c,cpp]": { 6 - "editor": { 7 - "tabSize": 4, 8 - "insertSpaces": true, 9 - "detectIndentation": false, 10 - "trimAutoWhitespace": true, 11 - "formatOnSave": false, 12 - "formatOnType": true, 13 - "defaultFormatter": "clang-format", 14 - "rulers": [100], 15 - "wordWrap": "off" 16 - } 17 - }, 18 - "files": { 19 - "associations": { 20 - "*.c": "c", 21 - "*.h": "c", 22 - "*.cpp": "cpp", 23 - "*.hpp": "cpp" 24 - }, 25 - "encoding": "utf8", 26 - "trimTrailingWhitespace": true, 27 - "insertFinalNewline": true, 28 - "exclude": { 29 - "**/.git": true, 30 - "compile_commands.json": true, 31 - "output-*": true, 32 - "modules/optional": true, 33 - "modules/3rdparty": true, 34 - "modules/bootcd_extras": true, 35 - "modules/livecd_extras": true, 36 - "modules/hybridcd_extras": true, 37 - "modules/[Aa][Hh][Kk]_[Tt]ests": true, 38 - ".cache": true, 39 - ".cproject": true, 40 - ".DS_Store": true, 41 - ".project": true, 42 - ".settings": true, 43 - ".vscode": true, 44 - "sdk/tools/winesync/winesync.cfg": true, 45 - "**/build": true, 46 - "**/obj": true, 47 - "**/bin": true, 48 - "**/*.o": true, 49 - "**/*.obj": true 50 - } 51 - } 52 - }
-46
.cursor/settings.json
··· 1 - { 2 - "projectType": "reactos", 3 - "language": { 4 - "c": { 5 - "standard": "c99", 6 - "warnings": ["all", "error", "pedantic", "unused"], 7 - "formatter": "clang-format", 8 - "linter": "clang-tidy" 9 - }, 10 - "cpp": { 11 - "standard": "c++11", 12 - "warnings": ["all", "error", "pedantic", "unused"], 13 - "formatter": "clang-format", 14 - "linter": "clang-tidy" 15 - } 16 - }, 17 - "codingStyle": "reactos", 18 - "formatOnSave": false, 19 - "lintOnSave": false, 20 - "paths": { 21 - "source": [ 22 - "base", 23 - "boot", 24 - "dll", 25 - "drivers", 26 - "hal", 27 - "ntoskrnl", 28 - "subsystems", 29 - "win32ss" 30 - ], 31 - "include": [ 32 - "sdk/include" 33 - ], 34 - "docs": [ 35 - "**/*.md", 36 - "media/doc/*.md", 37 - "media/doc/*.txt" 38 - ], 39 - "tests": [ 40 - "modules/rostests" 41 - ], 42 - "build": [ 43 - "output-*" 44 - ] 45 - } 46 - }
-2
.gitignore
··· 13 13 .settings 14 14 .vscode 15 15 sdk/tools/winesync/winesync.cfg 16 - .cursor/cache/ 17 - .cursor/logs/