private void checkValidity(final String[] parts, final ParsingContext context){
        if(parts.length != 2)
            throw new LinterException(WRONG_FORMAT, context);
        if(!affixOption.is(parts[0]))
            throw new LinterException(BAD_OPTION, context, affixOption.getCode());