mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
OPENIDE #58 Hide .idea folder in projects
This commit is contained in:
@@ -1,4 +1,7 @@
|
|||||||
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
// Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
||||||
|
//
|
||||||
|
// Modified by Nikita Iarychenko at 2025 as part of the OpenIDE project (https://openide.ru).
|
||||||
|
// Any modifications are available on the same license terms as the original source code.
|
||||||
package com.intellij.openapi.fileTypes.impl;
|
package com.intellij.openapi.fileTypes.impl;
|
||||||
|
|
||||||
import com.intellij.concurrency.ConcurrentCollectionFactory;
|
import com.intellij.concurrency.ConcurrentCollectionFactory;
|
||||||
@@ -78,7 +81,7 @@ public class FileTypeManagerImpl extends FileTypeManagerEx implements Persistent
|
|||||||
// must be sorted
|
// must be sorted
|
||||||
@SuppressWarnings("SpellCheckingInspection")
|
@SuppressWarnings("SpellCheckingInspection")
|
||||||
static final List<String> DEFAULT_IGNORED = List.of("*.pyc", "*.pyo", "*.rbc", "*.yarb", "*~", ".DS_Store", ".git", ".hg",
|
static final List<String> DEFAULT_IGNORED = List.of("*.pyc", "*.pyo", "*.rbc", "*.yarb", "*~", ".DS_Store", ".git", ".hg",
|
||||||
".mypy_cache", ".pytest_cache", ".ruff_cache",
|
".idea", ".mypy_cache", ".pytest_cache", ".ruff_cache",
|
||||||
".svn", "CVS", "__pycache__", "_svn", "vssver.scc", "vssver2.scc");
|
".svn", "CVS", "__pycache__", "_svn", "vssver.scc", "vssver2.scc");
|
||||||
|
|
||||||
static final String FILE_SPEC = "filetypes";
|
static final String FILE_SPEC = "filetypes";
|
||||||
|
|||||||
Reference in New Issue
Block a user