Skip to content

Instantly share code, notes, and snippets.

View MEZk's full-sized avatar

Andrei Selkin MEZk

View GitHub Profile
@MEZk
MEZk / .vimrc
Created August 18, 2024 12:56 — forked from alexey-goloburdin/.vimrc
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
@MEZk
MEZk / IdeaInspectionsSuppressionBug.java
Created September 3, 2017 09:30
idea inspections suppression bug
package com.puppycrawl.tools.checkstyle.api;
/**
* @noinspection FieldCanBeLocal, ConstructorWithTooManyParameters, ClassIndependentOfModule
*/
public class IdeaInspectionsSuppressionBug {
private final String f1;
private final String f2;
private final String f3;